diff --git a/apps/desktop/src/folders/folder-editor.tsx b/apps/desktop/src/folders/folder-editor.tsx new file mode 100644 index 00000000000..905e57727bc --- /dev/null +++ b/apps/desktop/src/folders/folder-editor.tsx @@ -0,0 +1,302 @@ +import { Trans, useLingui } from "@lingui/react/macro"; +import { DotsThree, File, Plus, X } from "@phosphor-icons/react"; +import { useCallback, useRef, useState } from "react"; + +import { Button } from "@anlg/ui/components/ui/button"; +import { + AppFloatingPanel, + appFloatingMenuPanelClassName, + DropdownMenu, + DropdownMenuContent, + DropdownMenuItem, + DropdownMenuTrigger, +} from "@anlg/ui/components/ui/dropdown-menu"; +import { Input } from "@anlg/ui/components/ui/input"; +import { cn } from "@anlg/utils"; + +import { useFolderSelection } from "./selection"; + +import { + deleteLocalFolderMaterial, + diskAttachmentId, + useFolderMaterials, +} from "~/session/folder-attachments"; +import { + deleteNamedFolder, + renameNamedFolder, + updateFolderIcon, +} from "~/session/folder-catalog"; +import { resolvedFolderIcon } from "~/session/folder-icon"; +import { FolderInstructionsField } from "~/session/folder-instructions"; +import { folderDisplayName, normalizeFolderPath } from "~/session/folders"; +import { useFolderIcons } from "~/session/queries"; +import { useFolderMaterialUpload } from "~/shared/hooks/useFileUpload"; +import { DestructiveConfirmationDialog } from "~/shared/ui/destructive-confirmation-dialog"; +import { TemplateIconPicker } from "~/templates/template-icon-picker"; + +export function FolderEditor({ folderPath }: { folderPath: string }) { + const { t } = useLingui(); + const setSelectedPath = useFolderSelection((state) => state.setSelectedPath); + const markFolderDeleted = useFolderSelection( + (state) => state.markFolderDeleted, + ); + const persistedIcons = useFolderIcons(); + const iconOverrides = useFolderSelection((state) => state.iconOverrides); + const setIconOverride = useFolderSelection((state) => state.setIconOverride); + const clearIconOverride = useFolderSelection( + (state) => state.clearIconOverride, + ); + const rekeyIconOverride = useFolderSelection( + (state) => state.rekeyIconOverride, + ); + const icon = resolvedFolderIcon(folderPath, persistedIcons, iconOverrides); + const materials = useFolderMaterials(folderPath); + const upload = useFolderMaterialUpload(folderPath); + const inputRef = useRef(null); + const skipTitleCommit = useRef(false); + const [busy, setBusy] = useState(false); + const [actionsOpen, setActionsOpen] = useState(false); + const [deleting, setDeleting] = useState(false); + const displayName = folderDisplayName(folderPath); + const [draft, setDraft] = useState(displayName); + + const commitTitle = useCallback(async () => { + if (skipTitleCommit.current) { + skipTitleCommit.current = false; + setDraft(displayName); + return; + } + + const normalizedName = normalizeFolderPath(draft.trim()); + if (!normalizedName || normalizedName.includes("/")) { + setDraft(displayName); + return; + } + + const separatorIndex = folderPath.lastIndexOf("/"); + const parentPath = + separatorIndex === -1 ? "" : folderPath.slice(0, separatorIndex); + const renamedPath = parentPath + ? `${parentPath}/${normalizedName}` + : normalizedName; + if (renamedPath === folderPath) { + setDraft(displayName); + return; + } + + setBusy(true); + try { + const renamed = await renameNamedFolder(folderPath, renamedPath); + rekeyIconOverride(folderPath, renamed); + setSelectedPath(renamed); + } catch { + setDraft(displayName); + } finally { + setBusy(false); + } + }, [displayName, draft, folderPath, rekeyIconOverride, setSelectedPath]); + + return ( +
+
+
+ { + setIconOverride(folderPath, nextIcon); + void updateFolderIcon(folderPath, nextIcon).catch((error) => { + clearIconOverride(folderPath, nextIcon); + console.error("[folder-editor] failed to update icon", error); + }); + }} + /> +
+ + setDraft(event.target.value)} + onBlur={() => { + void commitTitle(); + }} + onKeyDown={(event) => { + if (event.key === "Enter") { + event.currentTarget.blur(); + } + if (event.key === "Escape") { + skipTitleCommit.current = true; + setDraft(displayName); + event.currentTarget.blur(); + } + }} + placeholder={t`Folder name`} + className="absolute inset-0 h-auto w-full max-w-full min-w-0 border-0 px-0 py-0 text-sm font-semibold shadow-none focus-visible:ring-0 md:text-sm" + /> +
+
+ + + + + + + setDeleting(true)} + className="cursor-pointer text-red-600 focus:text-red-600" + > + Delete + + + + +
+ +
+
+
+

+ Context +

+

+ What these notes are usually about +

+ +
+ +
+

+ Materials +

+ { + const file = event.target.files?.[0]; + event.target.value = ""; + if (!file) { + return; + } + setBusy(true); + try { + await upload(file); + } finally { + setBusy(false); + } + }} + /> +
    +
  • + +
  • + {materials.map((material) => ( +
  • +
    + + + {material.filename} + + +
    +
  • + ))} +
+
+
+
+ + Delete folder} + description={ + + Notes stay in All notes. This folder, its nested folders, and all + their materials will be deleted. + + } + confirmLabel={Delete folder} + isPending={busy} + onConfirm={() => { + void (async () => { + setBusy(true); + try { + await deleteNamedFolder(folderPath); + setDeleting(false); + markFolderDeleted(folderPath); + } finally { + setBusy(false); + } + })(); + }} + /> +
+ ); +} diff --git a/apps/desktop/src/folders/index.test.tsx b/apps/desktop/src/folders/index.test.tsx new file mode 100644 index 00000000000..00f6123f9a1 --- /dev/null +++ b/apps/desktop/src/folders/index.test.tsx @@ -0,0 +1,337 @@ +import { + cleanup, + fireEvent, + render, + screen, + waitFor, +} from "@testing-library/react"; +import type { ReactNode } from "react"; +import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; + +const mocks = vi.hoisted(() => ({ + createNamedFolder: vi.fn(), + deleteLocalFolderMaterial: vi.fn(), + deleteNamedFolder: vi.fn(), + folders: [] as string[], + icons: {} as Record, + instructions: "", + materials: [] as Array<{ + id: string; + filename: string; + contentType: string; + sizeBytes: number; + relativePath: string; + }>, + renameNamedFolder: vi.fn(), + updateFolderIcon: vi.fn(), + updateFolderInstructions: vi.fn(), + upload: vi.fn(), +})); + +vi.mock("@lingui/react/macro", () => ({ + Trans: ({ children }: { children?: ReactNode }) => <>{children}, + useLingui: () => ({ + t: (strings: TemplateStringsArray, ...values: unknown[]) => + strings.reduce( + (message, part, index) => + `${message}${part}${index < values.length ? String(values[index]) : ""}`, + "", + ), + }), +})); + +vi.mock("~/session/queries", () => ({ + useFolderIcons: () => mocks.icons, + useFolderPaths: () => mocks.folders, +})); + +vi.mock("~/session/folder-catalog", () => ({ + createNamedFolder: mocks.createNamedFolder, + deleteNamedFolder: mocks.deleteNamedFolder, + renameNamedFolder: mocks.renameNamedFolder, + updateFolderIcon: mocks.updateFolderIcon, + updateFolderInstructions: mocks.updateFolderInstructions, + useFolderInstructions: () => mocks.instructions, +})); + +vi.mock("~/session/folder-attachments", () => ({ + deleteLocalFolderMaterial: mocks.deleteLocalFolderMaterial, + diskAttachmentId: (relativePath: string) => { + const parts = relativePath.split("/"); + return parts[parts.length - 1] ?? relativePath; + }, + useFolderMaterials: () => mocks.materials, +})); + +vi.mock("~/shared/hooks/useFileUpload", () => ({ + useFolderMaterialUpload: () => mocks.upload, +})); + +vi.mock("~/sidebar/custom-sidebar-header", () => ({ + CustomSidebarHeader: ({ children }: { children?: ReactNode }) => ( +
{children}
+ ), +})); + +import { FoldersMain } from "./index"; +import { useFolderSelection } from "./selection"; +import { FoldersSidebar } from "./sidebar"; + +function FoldersWorkspace() { + return ( + <> + + + + ); +} + +describe("Folders workspace", () => { + beforeEach(() => { + mocks.createNamedFolder.mockReset(); + mocks.deleteLocalFolderMaterial.mockReset(); + mocks.deleteNamedFolder.mockReset(); + mocks.renameNamedFolder.mockReset(); + mocks.updateFolderIcon.mockReset(); + mocks.updateFolderInstructions.mockReset(); + mocks.upload.mockReset(); + mocks.folders = []; + mocks.icons = {}; + mocks.instructions = ""; + mocks.materials = []; + mocks.createNamedFolder.mockResolvedValue("CS 101"); + mocks.deleteNamedFolder.mockResolvedValue(undefined); + mocks.renameNamedFolder.mockResolvedValue("Algorithms"); + mocks.updateFolderIcon.mockResolvedValue(undefined); + mocks.updateFolderInstructions.mockResolvedValue(undefined); + mocks.upload.mockResolvedValue({ + path: "/vault/sessions/CS 101/materials/syllabus.pdf", + attachmentId: "syllabus.pdf", + }); + mocks.deleteLocalFolderMaterial.mockResolvedValue(undefined); + useFolderSelection.setState({ + selectedPath: null, + deletedPrefixes: [], + iconOverrides: {}, + }); + }); + + afterEach(() => { + cleanup(); + }); + + it("shows an empty state until a folder is created", async () => { + render(); + + expect( + screen.getByText( + "No folders yet. Create one to group notes and materials.", + ), + ).toBeTruthy(); + + fireEvent.click(screen.getByRole("button", { name: "New folder" })); + fireEvent.change(screen.getByLabelText("Folder name"), { + target: { value: "CS 101" }, + }); + fireEvent.click(screen.getByRole("button", { name: "Create" })); + + await waitFor(() => { + expect(mocks.createNamedFolder).toHaveBeenCalledWith("CS 101"); + }); + }); + + it("edits context and materials for the selected folder", async () => { + mocks.folders = ["CS 101", "Work"]; + mocks.materials = [ + { + id: "mat-1", + filename: "syllabus.pdf", + contentType: "application/pdf", + sizeBytes: 12, + relativePath: "materials/syllabus.pdf", + }, + ]; + + render(); + + expect(screen.getByRole("textbox", { name: "Folder name" })).toHaveProperty( + "value", + "CS 101", + ); + fireEvent.click(screen.getByRole("button", { name: "Work" })); + expect(screen.getByRole("textbox", { name: "Folder name" })).toHaveProperty( + "value", + "Work", + ); + + fireEvent.change(screen.getByLabelText("Folder context"), { + target: { value: "Prefer the syllabus." }, + }); + fireEvent.blur(screen.getByLabelText("Folder context")); + + await waitFor(() => { + expect(mocks.updateFolderInstructions).toHaveBeenCalledWith( + "Work", + "Prefer the syllabus.", + ); + }); + + expect(screen.getByText("Context")).toBeTruthy(); + expect(screen.getByText("What these notes are usually about")).toBeTruthy(); + expect(screen.getByRole("button", { name: "Add file" })).toBeTruthy(); + expect(screen.getByText("syllabus.pdf")).toBeTruthy(); + const file = new File(["week 1"], "notes.txt", { type: "text/plain" }); + fireEvent.click(screen.getByRole("button", { name: "Add file" })); + fireEvent.change(document.querySelector('input[type="file"]')!, { + target: { files: [file] }, + }); + + await waitFor(() => { + expect(mocks.upload).toHaveBeenCalledWith(file); + }); + }); + + it("filters the sidebar by folder name", () => { + mocks.folders = ["CS 101", "Work"]; + + render(); + + fireEvent.change(screen.getByPlaceholderText("Search folders..."), { + target: { value: "work" }, + }); + + expect(screen.getByRole("button", { name: "Work" })).toBeTruthy(); + expect(screen.queryByRole("button", { name: "CS 101" })).toBeNull(); + }); + + it("shows parent paths for nested folders", () => { + mocks.folders = ["Work/Sales", "Personal/Sales"]; + + render(); + + expect(screen.getByText("Work/Sales")).toBeTruthy(); + expect(screen.getByText("Personal/Sales")).toBeTruthy(); + }); + + it("renames the folder from the title field", async () => { + mocks.folders = ["Work"]; + + render(); + + expect(screen.getByRole("button", { name: "Add file" })).toBeTruthy(); + expect( + screen.queryByText("Add a syllabus or PDF for this folder"), + ).toBeNull(); + + const title = screen.getByRole("textbox", { name: "Folder name" }); + fireEvent.change(title, { target: { value: "Algorithms" } }); + fireEvent.blur(title); + + await waitFor(() => { + expect(mocks.renameNamedFolder).toHaveBeenCalledWith( + "Work", + "Algorithms", + ); + }); + }); + + it("keeps an explicitly selected folder active while queries catch up", () => { + mocks.folders = ["Work"]; + useFolderSelection.setState({ selectedPath: "New Folder" }); + + render(); + + expect(screen.getByRole("textbox", { name: "Folder name" })).toHaveProperty( + "value", + "New Folder", + ); + }); + + it("keeps a nested folder under its parent when renaming it", async () => { + mocks.folders = ["Courses/Algorithms"]; + mocks.renameNamedFolder.mockResolvedValue("Courses/Data Structures"); + + render(); + + const title = screen.getByRole("textbox", { name: "Folder name" }); + fireEvent.change(title, { target: { value: "Data Structures" } }); + fireEvent.blur(title); + + await waitFor(() => { + expect(mocks.renameNamedFolder).toHaveBeenCalledWith( + "Courses/Algorithms", + "Courses/Data Structures", + ); + }); + }); + + it("deletes the folder from the actions menu", async () => { + mocks.folders = ["Work", "Personal"]; + + render(); + + fireEvent.pointerDown( + screen.getByRole("button", { name: "Folder actions" }), + { button: 0, ctrlKey: false }, + ); + fireEvent.click(await screen.findByRole("menuitem", { name: "Delete" })); + expect( + screen.getByText( + "Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.", + ), + ).toBeTruthy(); + fireEvent.click(screen.getByRole("button", { name: "Delete folder" })); + + await waitFor(() => { + expect(mocks.deleteNamedFolder).toHaveBeenCalledWith("Work"); + expect( + screen.getByRole("textbox", { name: "Folder name" }), + ).toHaveProperty("value", "Personal"); + }); + }); + + it("saves a folder icon from the header picker", async () => { + mocks.folders = ["Work"]; + + render(); + + fireEvent.click(screen.getByRole("button", { name: "Choose folder icon" })); + fireEvent.click(screen.getByRole("button", { name: "target" })); + + await waitFor(() => { + expect(mocks.updateFolderIcon).toHaveBeenCalledWith("Work", { + type: "icon", + value: "target", + color: "#9ca3af", + }); + }); + expect(useFolderSelection.getState().iconOverrides.Work).toEqual({ + type: "icon", + value: "target", + color: "#9ca3af", + }); + }); + + it("clears an optimistic folder icon when saving fails", async () => { + mocks.folders = ["Work"]; + mocks.updateFolderIcon.mockRejectedValue(new Error("unavailable")); + const consoleError = vi + .spyOn(console, "error") + .mockImplementation(() => {}); + + render(); + + fireEvent.click(screen.getByRole("button", { name: "Choose folder icon" })); + fireEvent.click(screen.getByRole("button", { name: "target" })); + + await waitFor(() => { + expect(mocks.updateFolderIcon).toHaveBeenCalledWith("Work", { + type: "icon", + value: "target", + color: "#9ca3af", + }); + expect(useFolderSelection.getState().iconOverrides.Work).toBeUndefined(); + }); + consoleError.mockRestore(); + }); +}); diff --git a/apps/desktop/src/folders/index.tsx b/apps/desktop/src/folders/index.tsx new file mode 100644 index 00000000000..2e45ee03d35 --- /dev/null +++ b/apps/desktop/src/folders/index.tsx @@ -0,0 +1,32 @@ +import { Trans } from "@lingui/react/macro"; + +import { FolderEditor } from "./folder-editor"; +import { useActiveFolderPath } from "./selection"; + +import { useFolderPaths } from "~/session/queries"; +import { StandardContentWrapper } from "~/shared/main"; + +export function TabContentFolders() { + return ( + +
+ +
+
+ ); +} + +export function FoldersMain() { + const folders = useFolderPaths(); + const activeFolder = useActiveFolderPath(folders); + + if (!activeFolder) { + return ( +

+ No folders yet. Create one to group notes and materials. +

+ ); + } + + return ; +} diff --git a/apps/desktop/src/folders/selection.ts b/apps/desktop/src/folders/selection.ts new file mode 100644 index 00000000000..b892e1e81ab --- /dev/null +++ b/apps/desktop/src/folders/selection.ts @@ -0,0 +1,72 @@ +import { create } from "zustand"; + +import { type TemplateIcon } from "~/templates/template-icon"; + +export const useFolderSelection = create<{ + selectedPath: string | null; + deletedPrefixes: string[]; + iconOverrides: Record; + setSelectedPath: (path: string | null) => void; + markFolderDeleted: (path: string) => void; + setIconOverride: (path: string, icon: TemplateIcon) => void; + clearIconOverride: (path: string, icon: TemplateIcon) => void; + rekeyIconOverride: (fromPath: string, toPath: string) => void; +}>((set) => ({ + selectedPath: null, + deletedPrefixes: [], + iconOverrides: {}, + setSelectedPath: (selectedPath) => + set((state) => ({ + selectedPath, + deletedPrefixes: selectedPath + ? state.deletedPrefixes.filter( + (prefix) => + selectedPath !== prefix && !selectedPath.startsWith(`${prefix}/`), + ) + : state.deletedPrefixes, + })), + markFolderDeleted: (path) => + set((state) => ({ + selectedPath: + state.selectedPath === path || + state.selectedPath?.startsWith(`${path}/`) + ? null + : state.selectedPath, + deletedPrefixes: state.deletedPrefixes.includes(path) + ? state.deletedPrefixes + : [...state.deletedPrefixes, path], + })), + setIconOverride: (path, icon) => + set((state) => ({ + iconOverrides: { ...state.iconOverrides, [path]: icon }, + })), + clearIconOverride: (path, icon) => + set((state) => { + if (state.iconOverrides[path] !== icon) { + return state; + } + const { [path]: _, ...rest } = state.iconOverrides; + return { iconOverrides: rest }; + }), + rekeyIconOverride: (fromPath, toPath) => + set((state) => { + if (fromPath === toPath || !state.iconOverrides[fromPath]) { + return state; + } + const { [fromPath]: icon, ...rest } = state.iconOverrides; + return { iconOverrides: { ...rest, [toPath]: icon } }; + }), +})); + +export function useActiveFolderPath(folders: string[]): string | null { + const selectedPath = useFolderSelection((state) => state.selectedPath); + const deletedPrefixes = useFolderSelection((state) => state.deletedPrefixes); + const isDeleted = (path: string) => + deletedPrefixes.some( + (prefix) => path === prefix || path.startsWith(`${prefix}/`), + ); + if (selectedPath !== null && !isDeleted(selectedPath)) { + return selectedPath; + } + return folders.find((folder) => !isDeleted(folder)) ?? null; +} diff --git a/apps/desktop/src/folders/sidebar.tsx b/apps/desktop/src/folders/sidebar.tsx new file mode 100644 index 00000000000..c58c6490b9a --- /dev/null +++ b/apps/desktop/src/folders/sidebar.tsx @@ -0,0 +1,155 @@ +import { Trans, useLingui } from "@lingui/react/macro"; +import { FolderSimple, MagnifyingGlass, Plus, X } from "@phosphor-icons/react"; +import { useMemo, useState } from "react"; + +import { Button } from "@anlg/ui/components/ui/button"; +import { cn } from "@anlg/utils"; + +import { useActiveFolderPath, useFolderSelection } from "./selection"; + +import { createNamedFolder } from "~/session/folder-catalog"; +import { resolvedFolderIcon } from "~/session/folder-icon"; +import { useFolderIcons, useFolderPaths } from "~/session/queries"; +import { CustomSidebarHeader } from "~/sidebar/custom-sidebar-header"; +import { FolderNameDialog } from "~/sidebar/folder-name-dialog"; +import { TemplateIconGlyph } from "~/templates/template-icon"; + +export function FoldersSidebar() { + const { t } = useLingui(); + const folders = useFolderPaths(); + const persistedIcons = useFolderIcons(); + const iconOverrides = useFolderSelection((state) => state.iconOverrides); + const setSelectedPath = useFolderSelection((state) => state.setSelectedPath); + const activeFolder = useActiveFolderPath(folders); + const [creating, setCreating] = useState(false); + const [search, setSearch] = useState(""); + + const filteredFolders = useMemo(() => { + const query = search.trim().toLowerCase(); + if (!query) { + return folders; + } + return folders.filter((folder) => folder.toLowerCase().includes(query)); + }, [folders, search]); + + const isEmpty = filteredFolders.length === 0; + + return ( +
+
+ + + + +
+
+ + setSearch(event.target.value)} + onKeyDown={(event) => { + if (event.key === "Escape") { + setSearch(""); + } + }} + placeholder={t`Search folders...`} + className="placeholder:text-muted-foreground min-w-0 flex-1 bg-transparent text-sm placeholder:text-sm focus:outline-hidden" + /> + {search ? ( + + ) : null} +
+
+
+ +
+ {isEmpty ? ( +
+ +

+ {search ? ( + No folders found + ) : ( + No folders yet + )} +

+
+ ) : ( +
    + {filteredFolders.map((folder) => { + const selected = folder === activeFolder; + return ( +
  • + +
  • + ); + })} +
+ )} +
+ + { + const created = await createNamedFolder(path); + setSelectedPath(created); + }} + /> +
+ ); +} diff --git a/apps/desktop/src/i18n/locales/af/messages.po b/apps/desktop/src/i18n/locales/af/messages.po index fdf582980f4..790c63f0018 100644 --- a/apps/desktop/src/i18n/locales/af/messages.po +++ b/apps/desktop/src/i18n/locales/af/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Voeg taal by" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/af/messages.ts b/apps/desktop/src/i18n/locales/af/messages.ts index 51440802997..d9233dff7f0 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hooftaal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Soek taal...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deel gebruiksdata\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Geen passende tale gevind nie\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hooftaal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Soek taal...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deel gebruiksdata\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Geen passende tale gevind nie\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 2e2d966f287..141795ed652 100644 --- a/apps/desktop/src/i18n/locales/am/messages.po +++ b/apps/desktop/src/i18n/locales/am/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "ቋንቋ አክል" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/am/messages.ts b/apps/desktop/src/i18n/locales/am/messages.ts index 1c5683d8052..f5a218704f3 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ዋና ቋንቋ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ቋንቋ ፈልግ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"የአጠቃቀም ውሂብ አጋራ\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"መተግበሪያ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ምንም ተዛማጅ ቋንቋዎች አልተገኙም\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ዋና ቋንቋ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ቋንቋ ፈልግ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"የአጠቃቀም ውሂብ አጋራ\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"መተግበሪያ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ምንም ተዛማጅ ቋንቋዎች አልተገኙም\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 01802af5f92..21f87a312ad 100644 --- a/apps/desktop/src/i18n/locales/ar/messages.po +++ b/apps/desktop/src/i18n/locales/ar/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "إضافة لغة" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ar/messages.ts b/apps/desktop/src/i18n/locales/ar/messages.ts index 07014d362c2..3d2e31861ad 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اللغة الرئيسية\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"لغة البحث...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"مشاركة بيانات الاستخدام\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"التطبيق\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"لم يتم العثور على لغات مطابقة\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اللغة الرئيسية\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"لغة البحث...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"مشاركة بيانات الاستخدام\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"التطبيق\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"لم يتم العثور على لغات مطابقة\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 57eb7ff50d3..be595f9ca30 100644 --- a/apps/desktop/src/i18n/locales/as/messages.po +++ b/apps/desktop/src/i18n/locales/as/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "ভাষা যোগ কৰক" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/as/messages.ts b/apps/desktop/src/i18n/locales/as/messages.ts index 703c56fd975..5561bb191ba 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"মূল ভাষা\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"অন্বেষণ ভাষা...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ব্যৱহাৰৰ তথ্য অংশীদাৰী কৰক\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"এপ্প\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"কোনো মিল থকা ভাষা পোৱা নগ'ল\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"মূল ভাষা\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"অন্বেষণ ভাষা...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ব্যৱহাৰৰ তথ্য অংশীদাৰী কৰক\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"এপ্প\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"কোনো মিল থকা ভাষা পোৱা নগ'ল\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 85648b90271..eb9622d0327 100644 --- a/apps/desktop/src/i18n/locales/az/messages.po +++ b/apps/desktop/src/i18n/locales/az/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Dil əlavə edin" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/az/messages.ts b/apps/desktop/src/i18n/locales/az/messages.ts index b0c13a9e9fb..fb2f85144bf 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Əsas dil\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Dil axtarın...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Uyğun dil tapılmadı\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Əsas dil\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Dil axtarın...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Uyğun dil tapılmadı\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 4754aaebe5d..08ce725e1c6 100644 --- a/apps/desktop/src/i18n/locales/ba/messages.po +++ b/apps/desktop/src/i18n/locales/ba/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Тел өҫтәү" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ba/messages.ts b/apps/desktop/src/i18n/locales/ba/messages.ts index 4baa957af92..c0c1d30e41e 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Эҙләү теле...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ҡулланыу мәғлүмәттәре менән уртаҡлашыу\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ҡушымта\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Тап килгән телдәр табылмаған\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Эҙләү теле...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ҡулланыу мәғлүмәттәре менән уртаҡлашыу\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ҡушымта\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Тап килгән телдәр табылмаған\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 b95df1f37aa..56404b47762 100644 --- a/apps/desktop/src/i18n/locales/be/messages.po +++ b/apps/desktop/src/i18n/locales/be/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Дадаць мову" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/be/messages.ts b/apps/desktop/src/i18n/locales/be/messages.ts index 4d789c808e5..113d055d0d3 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Асноўная мова\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Мова пошуку...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Абагульваць дадзеныя аб выкарыстанні\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Прыкладанне\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Не знойдзена адпаведных моў\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Асноўная мова\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Мова пошуку...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Абагульваць дадзеныя аб выкарыстанні\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Прыкладанне\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Не знойдзена адпаведных моў\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 a103bffb9b8..9fe8a489e99 100644 --- a/apps/desktop/src/i18n/locales/bg/messages.po +++ b/apps/desktop/src/i18n/locales/bg/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Добавяне на език" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bg/messages.ts b/apps/desktop/src/i18n/locales/bg/messages.ts index a04e06453da..e2d9f9a0180 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основен език\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Език за търсене...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Споделяне на данни за използване\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Приложение\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Няма намерени съответстващи езици\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основен език\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Език за търсене...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Споделяне на данни за използване\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Приложение\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Няма намерени съответстващи езици\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 e4496394eaf..c8170165ad0 100644 --- a/apps/desktop/src/i18n/locales/bn/messages.po +++ b/apps/desktop/src/i18n/locales/bn/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "ভাষা যোগ করুন" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bn/messages.ts b/apps/desktop/src/i18n/locales/bn/messages.ts index bce5b9014b4..6b62aafd52b 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"প্রধান ভাষা\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ভাষা খুঁজুন...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ব্যবহারের ডেটা শেয়ার করুন\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"অ্যাপ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"কোন মিলিত ভাষা পাওয়া যায়নি\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"প্রধান ভাষা\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ভাষা খুঁজুন...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ব্যবহারের ডেটা শেয়ার করুন\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"অ্যাপ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"কোন মিলিত ভাষা পাওয়া যায়নি\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 d39fed2cd2f..566bc5df4f5 100644 --- a/apps/desktop/src/i18n/locales/bo/messages.po +++ b/apps/desktop/src/i18n/locales/bo/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "སྐད་ཡིག་ཁ་སྣོན" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bo/messages.ts b/apps/desktop/src/i18n/locales/bo/messages.ts index 9ea1d235488..1ca2041b840 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"སྐད་ཡིག་གཙོ་བོ།\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"འཚོལ་ཞིབ་སྐད་ཡིག...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"བེད་སྤྱོད་ཀྱི་གཞི་གྲངས་མཉམ་སྤྱོད།\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"མཉེན་ཆས།\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"མཐུན་པའི་སྐད་ཡིག་མ་རྙེད།\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"སྐད་ཡིག་གཙོ་བོ།\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"འཚོལ་ཞིབ་སྐད་ཡིག...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"བེད་སྤྱོད་ཀྱི་གཞི་གྲངས་མཉམ་སྤྱོད།\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"མཉེན་ཆས།\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"མཐུན་པའི་སྐད་ཡིག་མ་རྙེད།\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 bf597d42cba..bd54f054811 100644 --- a/apps/desktop/src/i18n/locales/br/messages.po +++ b/apps/desktop/src/i18n/locales/br/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Ouzhpennañ ur yezh" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/br/messages.ts b/apps/desktop/src/i18n/locales/br/messages.ts index 5cf547e6e33..9731244cb2e 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Yezh pennañ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Klask yezh...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Rannañ roadennoù implij\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Yezh pennañ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Klask yezh...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Rannañ roadennoù implij\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 b8dcaf94bb9..7c251fe98e9 100644 --- a/apps/desktop/src/i18n/locales/bs/messages.po +++ b/apps/desktop/src/i18n/locales/bs/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Dodaj jezik" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bs/messages.ts b/apps/desktop/src/i18n/locales/bs/messages.ts index 5d2acaba6ec..e37842e106c 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Pretraži jezik...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Pretraži jezik...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 30bca1422cc..bbadc4a4bee 100644 --- a/apps/desktop/src/i18n/locales/ca/messages.po +++ b/apps/desktop/src/i18n/locales/ca/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Afegeix un idioma" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ca/messages.ts b/apps/desktop/src/i18n/locales/ca/messages.ts index 90e23fccace..a8abe2ffb2d 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Cerca l'idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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ó\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Cerca l'idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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ó\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 bdd8b33e0ad..4b46f035696 100644 --- a/apps/desktop/src/i18n/locales/cs/messages.po +++ b/apps/desktop/src/i18n/locales/cs/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Přidat jazyk" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/cs/messages.ts b/apps/desktop/src/i18n/locales/cs/messages.ts index 4334d407004..1ab4f469d03 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hlavní jazyk\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Jazyk vyhledávání...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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í\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hlavní jazyk\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Jazyk vyhledávání...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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í\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 c52d8adaef4..520c60ef6e8 100644 --- a/apps/desktop/src/i18n/locales/cy/messages.po +++ b/apps/desktop/src/i18n/locales/cy/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Ychwanegu iaith" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/cy/messages.ts b/apps/desktop/src/i18n/locales/cy/messages.ts index 8f189c58b27..b5e7130e7eb 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Prif iaith\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Iaith chwilio...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Rhannu data defnydd\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Prif iaith\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Iaith chwilio...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Rhannu data defnydd\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 4900345f810..966cd4c274d 100644 --- a/apps/desktop/src/i18n/locales/da/messages.po +++ b/apps/desktop/src/i18n/locales/da/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Tilføj sprog" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/da/messages.ts b/apps/desktop/src/i18n/locales/da/messages.ts index 7b1f17db59d..26527b1dee0 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedsprog\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Søgesprog...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del brugsdata\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedsprog\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Søgesprog...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del brugsdata\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 ed6e20eceab..937be209de4 100644 --- a/apps/desktop/src/i18n/locales/de/messages.po +++ b/apps/desktop/src/i18n/locales/de/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Sprache hinzufügen" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/de/messages.ts b/apps/desktop/src/i18n/locales/de/messages.ts index 49015d3cc3b..5111890c0ae 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hauptsprache\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sprache suchen...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Nutzungsdaten teilen\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Keine passenden Sprachen gefunden\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hauptsprache\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sprache suchen...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Nutzungsdaten teilen\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Keine passenden Sprachen gefunden\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 a360dc065f4..83f816a3077 100644 --- a/apps/desktop/src/i18n/locales/el/messages.po +++ b/apps/desktop/src/i18n/locales/el/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Προσθήκη γλώσσας" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/el/messages.ts b/apps/desktop/src/i18n/locales/el/messages.ts index 2350f2f8a95..7fa9606a727 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Κύρια γλώσσα\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Αναζήτηση γλώσσας...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Κοινή χρήση δεδομένων χρήσης\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Εφαρμογή\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Δεν βρέθηκαν γλώσσες που να ταιριάζουν\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Κύρια γλώσσα\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Αναζήτηση γλώσσας...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Κοινή χρήση δεδομένων χρήσης\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Εφαρμογή\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Δεν βρέθηκαν γλώσσες που να ταιριάζουν\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 f1e0468fcc2..6ec1370def2 100644 --- a/apps/desktop/src/i18n/locales/en/messages.po +++ b/apps/desktop/src/i18n/locales/en/messages.po @@ -256,6 +256,10 @@ msgstr "Add at least one configured action before enabling." msgid "Add at least one example summary." msgstr "Add at least one example summary." +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "Add context for this folder" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "Add device" @@ -264,6 +268,10 @@ msgstr "Add device" msgid "Add example" msgstr "Add example" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "Add file" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Add language" @@ -939,6 +947,10 @@ msgstr "Choose files exported from this app." msgid "Choose folder" msgstr "Choose folder" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "Choose folder icon" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "Choose how Anarlog appears in the Dock." @@ -1001,6 +1013,7 @@ msgstr "Cleaning up..." #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "Contact options" msgid "Contacts" msgstr "Contacts" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "Context" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "Could not update this person's access." msgid "Could not use the selected model" msgstr "Could not use the selected model" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "Create" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "Default sharing" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "Delete comment" msgid "Delete Event" msgstr "Delete Event" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "Delete folder" @@ -2091,10 +2110,15 @@ msgstr "Float chat" msgid "Folder" msgstr "Folder" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" -msgstr "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" +msgstr "Folder actions" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "Folder context" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "Folder name" @@ -2103,6 +2127,10 @@ msgstr "Folder name" msgid "Folder: {currentPath}" msgstr "Folder: {currentPath}" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "Folders" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "Food & Drink" @@ -2275,10 +2303,6 @@ msgstr "Hide sync log" msgid "History {0}/{1}" msgstr "History {0}/{1}" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "How chat should use notes in this folder" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "How to get a Kimi Code key" @@ -2680,6 +2704,7 @@ msgstr "Match whole word" msgid "Match your device" msgstr "Match your device" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "Materials" @@ -2872,15 +2897,15 @@ msgstr "New automation" msgid "New chat" msgstr "New chat" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "New folder" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "New Note" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "New subfolder" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "New template" @@ -2956,7 +2981,6 @@ msgstr "No devices registered yet." msgid "No emoji found" msgstr "No emoji found" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "No folder" @@ -2965,14 +2989,26 @@ msgstr "No folder" msgid "No folder selected yet." msgstr "No folder selected yet." +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "No folders found" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "No folders found." +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "No folders yet" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "No folders yet." +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "No folders yet. Create one to group notes and materials." + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "No icons found" @@ -3110,9 +3146,11 @@ msgstr "Notes" msgid "Notes list" msgstr "Notes list" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." -msgstr "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." +msgstr "Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted." #. placeholder {0}: latestResult.conflicts #. placeholder {1}: latestResult.errors @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "Remove" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "Remove {0}" @@ -3914,6 +3953,10 @@ msgstr "Search contacts..." msgid "Search emoji..." msgstr "Search emoji..." +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "Search folders..." + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "Search icons..." @@ -3985,6 +4028,10 @@ msgstr "Section actions" msgid "Security" msgstr "Security" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "See all folders" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "See all templates" @@ -5285,6 +5332,10 @@ msgstr "Welcome to Anarlog" msgid "What are my action items from this meeting?" msgstr "What are my action items from this meeting?" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "What these notes are usually about" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "What were the key decisions that have been made?" diff --git a/apps/desktop/src/i18n/locales/en/messages.ts b/apps/desktop/src/i18n/locales/en/messages.ts index e8c9fbf7801..ce13f99bb86 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Main language\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Search language...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Share usage data\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No matching languages found\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Main language\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Search language...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Share usage data\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No matching languages found\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 6d30f31555c..5b7329e09f1 100644 --- a/apps/desktop/src/i18n/locales/es/messages.po +++ b/apps/desktop/src/i18n/locales/es/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Añadir idioma" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/es/messages.ts b/apps/desktop/src/i18n/locales/es/messages.ts index 78d7b0e7a64..1e2c71d4679 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Buscar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No se encontraron idiomas coincidentes\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Buscar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No se encontraron idiomas coincidentes\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 b9cfd5423d5..a6e4c98b479 100644 --- a/apps/desktop/src/i18n/locales/et/messages.po +++ b/apps/desktop/src/i18n/locales/et/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Lisage keel" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/et/messages.ts b/apps/desktop/src/i18n/locales/et/messages.ts index b951165549e..537042cdf60 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Põhikeel\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Otsingukeel...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kasutusandmete jagamine\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Sobivaid keeli ei leitud\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Põhikeel\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Otsingukeel...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kasutusandmete jagamine\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Sobivaid keeli ei leitud\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 81b6ad43011..b7320e2a403 100644 --- a/apps/desktop/src/i18n/locales/eu/messages.po +++ b/apps/desktop/src/i18n/locales/eu/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Gehitu hizkuntza" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/eu/messages.ts b/apps/desktop/src/i18n/locales/eu/messages.ts index dc59dfac858..87d5b36833d 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hizkuntza nagusia\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Bilatu hizkuntza...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partekatu erabilera datuak\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hizkuntza nagusia\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Bilatu hizkuntza...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partekatu erabilera datuak\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 d0ccfe7db16..e10a9dbe86f 100644 --- a/apps/desktop/src/i18n/locales/fa/messages.po +++ b/apps/desktop/src/i18n/locales/fa/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "افزودن زبان" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fa/messages.ts b/apps/desktop/src/i18n/locales/fa/messages.ts index 15af588e6cd..674c9d4e6d7 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"زبان اصلی\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"زبان جستجو...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"به اشتراک گذاری داده های استفاده\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"برنامه\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"هیچ زبان منطبقی یافت نشد\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"زبان اصلی\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"زبان جستجو...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"به اشتراک گذاری داده های استفاده\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"برنامه\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"هیچ زبان منطبقی یافت نشد\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 04c1b7453f4..ccd1e4d41fe 100644 --- a/apps/desktop/src/i18n/locales/ff/messages.po +++ b/apps/desktop/src/i18n/locales/ff/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Ɓeydu ɗemngal" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ff/messages.ts b/apps/desktop/src/i18n/locales/ff/messages.ts index 4e6e82003fc..d6a7220ac32 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ɗemngal mawngal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Ɗemngal njiylawu...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Renndinde dokke kuutoragol\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ɗemngal mawngal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Ɗemngal njiylawu...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Renndinde dokke kuutoragol\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 ca4cff2f4c8..d2e6488a01d 100644 --- a/apps/desktop/src/i18n/locales/fi/messages.po +++ b/apps/desktop/src/i18n/locales/fi/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Lisää kieli" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fi/messages.ts b/apps/desktop/src/i18n/locales/fi/messages.ts index f84e7147f4e..7cce56dc687 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pääkieli\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Hakukieli...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Vastaavia kieliä ei löytynyt\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pääkieli\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Hakukieli...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Vastaavia kieliä ei löytynyt\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 6b3ef129730..1301410fe6b 100644 --- a/apps/desktop/src/i18n/locales/fo/messages.po +++ b/apps/desktop/src/i18n/locales/fo/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Legg mál til" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fo/messages.ts b/apps/desktop/src/i18n/locales/fo/messages.ts index 8829d16625d..c1a6849df8e 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Høvuðsmál\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Leitimál...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Høvuðsmál\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Leitimál...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 9134962a257..fa51c487afb 100644 --- a/apps/desktop/src/i18n/locales/fr/messages.po +++ b/apps/desktop/src/i18n/locales/fr/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Ajouter une langue" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fr/messages.ts b/apps/desktop/src/i18n/locales/fr/messages.ts index 7751e14199f..50051d8bc91 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Langue principale\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Rechercher une langue...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Aucune langue correspondante trouvée\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Langue principale\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Rechercher une langue...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Aucune langue correspondante trouvée\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 172e8d4b951..c418af48e4b 100644 --- a/apps/desktop/src/i18n/locales/ga/messages.po +++ b/apps/desktop/src/i18n/locales/ga/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Cuir teanga leis" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ga/messages.ts b/apps/desktop/src/i18n/locales/ga/messages.ts index 65799740e61..cecfa9d3723 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Príomhtheanga\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Teanga chuardaigh...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Príomhtheanga\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Teanga chuardaigh...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 fc7cc736a9f..59f50974720 100644 --- a/apps/desktop/src/i18n/locales/gl/messages.po +++ b/apps/desktop/src/i18n/locales/gl/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Engadir idioma" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/gl/messages.ts b/apps/desktop/src/i18n/locales/gl/messages.ts index ce36513ce44..adc39d0e6a8 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Buscar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Non se atoparon idiomas coincidentes\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Buscar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Non se atoparon idiomas coincidentes\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 54ed1915d86..3f7d2ba777f 100644 --- a/apps/desktop/src/i18n/locales/gu/messages.po +++ b/apps/desktop/src/i18n/locales/gu/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "ભાષા ઉમેરો" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/gu/messages.ts b/apps/desktop/src/i18n/locales/gu/messages.ts index b7db6f17521..acf5a770031 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"મુખ્ય ભાષા\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ભાષા શોધો...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"વપરાશનો ડેટા શેર કરો\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"એપ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"કોઈ મેળ ખાતી ભાષાઓ મળી નથી\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"મુખ્ય ભાષા\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ભાષા શોધો...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"વપરાશનો ડેટા શેર કરો\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"એપ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"કોઈ મેળ ખાતી ભાષાઓ મળી નથી\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 6bb3e97ecb9..06995753c8a 100644 --- a/apps/desktop/src/i18n/locales/ha/messages.po +++ b/apps/desktop/src/i18n/locales/ha/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Ƙara harshe" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ha/messages.ts b/apps/desktop/src/i18n/locales/ha/messages.ts index 7cec0764ecd..1cf3328cd84 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Babban harshe\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Yaren bincike...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Raba bayanan amfani\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Babban harshe\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Yaren bincike...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Raba bayanan amfani\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 80d8da712d8..3ad246fd1d2 100644 --- a/apps/desktop/src/i18n/locales/he/messages.po +++ b/apps/desktop/src/i18n/locales/he/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "הוסף שפה" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/he/messages.ts b/apps/desktop/src/i18n/locales/he/messages.ts index 1a5bb25b086..b33f9cae1a0 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"שפה ראשית\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"שפת חיפוש...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"שתף נתוני שימוש\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"אפליקציה\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"לא נמצאו שפות מתאימות\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"שפה ראשית\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"שפת חיפוש...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"שתף נתוני שימוש\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"אפליקציה\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"לא נמצאו שפות מתאימות\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 8fa421047b2..235b7c4df9a 100644 --- a/apps/desktop/src/i18n/locales/hi/messages.po +++ b/apps/desktop/src/i18n/locales/hi/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "भाषा जोड़ें" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hi/messages.ts b/apps/desktop/src/i18n/locales/hi/messages.ts index 300e402bcc1..e52af8e2575 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"खोज भाषा...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोग डेटा साझा करें\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ऐप\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कोई मेल खाती भाषा नहीं मिली\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"खोज भाषा...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोग डेटा साझा करें\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ऐप\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कोई मेल खाती भाषा नहीं मिली\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 ed4d74903e7..72a297ff395 100644 --- a/apps/desktop/src/i18n/locales/hr/messages.po +++ b/apps/desktop/src/i18n/locales/hr/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Dodajte jezik" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hr/messages.ts b/apps/desktop/src/i18n/locales/hr/messages.ts index 056b8e1d30b..1b2068897f2 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Traži jezik...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Traži jezik...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 9d508df67d4..016fc6e11e1 100644 --- a/apps/desktop/src/i18n/locales/ht/messages.po +++ b/apps/desktop/src/i18n/locales/ht/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Ajoute lang" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ht/messages.ts b/apps/desktop/src/i18n/locales/ht/messages.ts index a4d6b7d4b06..1bec0388736 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lang prensipal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Rechèch lang...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Pataje done itilizasyon\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Okenn lang pa jwenn\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lang prensipal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Rechèch lang...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Pataje done itilizasyon\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Okenn lang pa jwenn\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 bda7882feda..83300b07756 100644 --- a/apps/desktop/src/i18n/locales/hu/messages.po +++ b/apps/desktop/src/i18n/locales/hu/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Nyelv hozzáadása" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hu/messages.ts b/apps/desktop/src/i18n/locales/hu/messages.ts index 51aa541c5c8..99a0a4c81dc 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Fő nyelv\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Keresési nyelv...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nincs megfelelő nyelv\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Fő nyelv\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Keresési nyelv...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nincs megfelelő nyelv\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 2faa1723e2d..32b868fb6a3 100644 --- a/apps/desktop/src/i18n/locales/hy/messages.po +++ b/apps/desktop/src/i18n/locales/hy/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Ավելացնել լեզու" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hy/messages.ts b/apps/desktop/src/i18n/locales/hy/messages.ts index 3f968f22fe9..2f688d7d9f1 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Հիմնական լեզու\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Որոնման լեզուն...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Կիսեք օգտագործման տվյալները\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Հավելված\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Համապատասխան լեզուներ չեն գտնվել\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Հիմնական լեզու\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Որոնման լեզուն...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Կիսեք օգտագործման տվյալները\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Հավելված\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Համապատասխան լեզուներ չեն գտնվել\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 f92247a7d77..155746b2646 100644 --- a/apps/desktop/src/i18n/locales/id/messages.po +++ b/apps/desktop/src/i18n/locales/id/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Tambahkan bahasa" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/id/messages.ts b/apps/desktop/src/i18n/locales/id/messages.ts index ab63679c264..259542bacac 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Bahasa utama\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Bahasa penelusuran...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bagikan data penggunaan\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tidak ditemukan bahasa yang cocok\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Bahasa utama\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Bahasa penelusuran...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bagikan data penggunaan\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tidak ditemukan bahasa yang cocok\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 97ff58ba815..5438c7d4460 100644 --- a/apps/desktop/src/i18n/locales/ig/messages.po +++ b/apps/desktop/src/i18n/locales/ig/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Tinye asụsụ" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ig/messages.ts b/apps/desktop/src/i18n/locales/ig/messages.ts index c258ce8847f..fe0725e11e2 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Asụsụ isi\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Chọọ asụsụ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Asụsụ isi\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Chọọ asụsụ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 8ff0ea84f1d..00b35d6447d 100644 --- a/apps/desktop/src/i18n/locales/is/messages.po +++ b/apps/desktop/src/i18n/locales/is/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Bæta við tungumáli" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/is/messages.ts b/apps/desktop/src/i18n/locales/is/messages.ts index 29c9e96a00f..6b7c3c20b24 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Aðaltungumál\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Leita tungumál...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deildu notkunargögnum\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Aðaltungumál\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Leita tungumál...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deildu notkunargögnum\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 ece7e7f8316..02ae12c8f0e 100644 --- a/apps/desktop/src/i18n/locales/it/messages.po +++ b/apps/desktop/src/i18n/locales/it/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Aggiungi lingua" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/it/messages.ts b/apps/desktop/src/i18n/locales/it/messages.ts index 38dd2a69486..d534b69eade 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingua principale\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Cerca lingua...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nessuna lingua corrispondente trovata\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingua principale\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Cerca lingua...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nessuna lingua corrispondente trovata\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 d9425c8e97e..fe899dc2eb6 100644 --- a/apps/desktop/src/i18n/locales/ja/messages.po +++ b/apps/desktop/src/i18n/locales/ja/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "言語を追加" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ja/messages.ts b/apps/desktop/src/i18n/locales/ja/messages.ts index a51d12b4467..313fe696c44 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"メイン言語\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"言語を検索...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"使用状況データを共有\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"アプリ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"一致する言語が見つかりません\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"メイン言語\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"言語を検索...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"使用状況データを共有\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"アプリ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"一致する言語が見つかりません\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 8fa36e9e27c..4e5b4e2c03e 100644 --- a/apps/desktop/src/i18n/locales/jv/messages.po +++ b/apps/desktop/src/i18n/locales/jv/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Tambah basa" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/jv/messages.ts b/apps/desktop/src/i18n/locales/jv/messages.ts index 9a307b0713f..a27d6a726ea 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Basa utama\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Telusuri basa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Nuduhake data panggunaan\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ora ditemokake basa sing cocog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Basa utama\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Telusuri basa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Nuduhake data panggunaan\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ora ditemokake basa sing cocog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 e4f2cfa18dd..494f5800507 100644 --- a/apps/desktop/src/i18n/locales/ka/messages.po +++ b/apps/desktop/src/i18n/locales/ka/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "ენის დამატება" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ka/messages.ts b/apps/desktop/src/i18n/locales/ka/messages.ts index 15b1fe901e1..f65f8cc072c 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"მთავარი ენა\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ენის ძიება...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"გამოყენების მონაცემების გაზიარება\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"აპი\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"შესაბამისი ენები ვერ მოიძებნა\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"მთავარი ენა\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ენის ძიება...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"გამოყენების მონაცემების გაზიარება\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"აპი\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"შესაბამისი ენები ვერ მოიძებნა\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 8a14383e391..893b1dbdc05 100644 --- a/apps/desktop/src/i18n/locales/kk/messages.po +++ b/apps/desktop/src/i18n/locales/kk/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Тілді қосу" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/kk/messages.ts b/apps/desktop/src/i18n/locales/kk/messages.ts index eb4297c2dd7..11e1d859043 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негізгі тіл\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Іздеу тілі...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Пайдалану деректерін бөлісу\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Қолданба\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Сәйкес тіл табылмады\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негізгі тіл\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Іздеу тілі...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Пайдалану деректерін бөлісу\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Қолданба\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Сәйкес тіл табылмады\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 7547a08faff..fbbb1449343 100644 --- a/apps/desktop/src/i18n/locales/km/messages.po +++ b/apps/desktop/src/i18n/locales/km/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "បន្ថែមភាសា" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/km/messages.ts b/apps/desktop/src/i18n/locales/km/messages.ts index b5b8bd616c1..3670f2baf57 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ភាសាចម្បង\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ភាសាស្វែងរក...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ចែករំលែកទិន្នន័យការប្រើប្រាស់\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"កម្មវិធី\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"រកមិនឃើញភាសាដែលត្រូវគ្នាទេ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ភាសាចម្បង\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ភាសាស្វែងរក...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ចែករំលែកទិន្នន័យការប្រើប្រាស់\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"កម្មវិធី\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"រកមិនឃើញភាសាដែលត្រូវគ្នាទេ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 48c60e42d00..5dc8cb5fbd5 100644 --- a/apps/desktop/src/i18n/locales/kn/messages.po +++ b/apps/desktop/src/i18n/locales/kn/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/kn/messages.ts b/apps/desktop/src/i18n/locales/kn/messages.ts index 68097c4187d..908690e49ca 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ಮುಖ್ಯ ಭಾಷೆ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ಹುಡುಕಾಟ ಭಾಷೆ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ಬಳಕೆಯ ಡೇಟಾವನ್ನು ಹಂಚಿಕೊಳ್ಳಿ\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ಅಪ್ಲಿಕೇಶನ್\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ಯಾವುದೇ ಹೊಂದಾಣಿಕೆಯ ಭಾಷೆಗಳು ಕಂಡುಬಂದಿಲ್ಲ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ಮುಖ್ಯ ಭಾಷೆ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ಹುಡುಕಾಟ ಭಾಷೆ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ಬಳಕೆಯ ಡೇಟಾವನ್ನು ಹಂಚಿಕೊಳ್ಳಿ\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ಅಪ್ಲಿಕೇಶನ್\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ಯಾವುದೇ ಹೊಂದಾಣಿಕೆಯ ಭಾಷೆಗಳು ಕಂಡುಬಂದಿಲ್ಲ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 e8df47863a7..65aa6ebcbfd 100644 --- a/apps/desktop/src/i18n/locales/ko/messages.po +++ b/apps/desktop/src/i18n/locales/ko/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "언어 추가" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ko/messages.ts b/apps/desktop/src/i18n/locales/ko/messages.ts index c28688b2677..268523dfa4a 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"기본 언어\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"언어 검색...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"사용 데이터 공유\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"앱\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"일치하는 언어를 찾을 수 없습니다\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"기본 언어\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"언어 검색...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"사용 데이터 공유\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"앱\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"일치하는 언어를 찾을 수 없습니다\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 33776b16e42..f1aed91b412 100644 --- a/apps/desktop/src/i18n/locales/ku/messages.po +++ b/apps/desktop/src/i18n/locales/ku/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Ziman lê zêde bike" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ku/messages.ts b/apps/desktop/src/i18n/locales/ku/messages.ts index 6a3c88fe419..9cdd6fd167f 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Zimanê sereke\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Zimanê gerînê...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Zimanê sereke\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Zimanê gerînê...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 e77c60d3bcd..4e0ca4a1ac8 100644 --- a/apps/desktop/src/i18n/locales/ky/messages.po +++ b/apps/desktop/src/i18n/locales/ky/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Тил кошуу" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ky/messages.ts b/apps/desktop/src/i18n/locales/ky/messages.ts index 55bb716b52c..967e50a0f37 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негизги тил\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Тилди издөө...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Колдонуу дайындарын бөлүшүү\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Колдонмо\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Дал келген тилдер табылган жок\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негизги тил\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Тилди издөө...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Колдонуу дайындарын бөлүшүү\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Колдонмо\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Дал келген тилдер табылган жок\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 9ed561e212a..2e21605ea1e 100644 --- a/apps/desktop/src/i18n/locales/la/messages.po +++ b/apps/desktop/src/i18n/locales/la/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Linguam addere" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/la/messages.ts b/apps/desktop/src/i18n/locales/la/messages.ts index a4c81de8de4..5e7d1853a03 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingua principalis\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Quaerere linguam...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Phare usus data\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Non inventae linguae matching\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingua principalis\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Quaerere linguam...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Phare usus data\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Non inventae linguae matching\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 e3972167611..65a3c0b2323 100644 --- a/apps/desktop/src/i18n/locales/lb/messages.po +++ b/apps/desktop/src/i18n/locales/lb/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Sprooch derbäi" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lb/messages.ts b/apps/desktop/src/i18n/locales/lb/messages.ts index 44f5cfd9227..ee990845a53 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Haaptsprooch\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sich Sprooch...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Verbrauchsdaten deelen\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Keng passende Sprooche fonnt\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Haaptsprooch\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sich Sprooch...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Verbrauchsdaten deelen\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Keng passende Sprooche fonnt\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 4e7405291f6..674a84fb309 100644 --- a/apps/desktop/src/i18n/locales/lg/messages.po +++ b/apps/desktop/src/i18n/locales/lg/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Ongerako olulimi" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lg/messages.ts b/apps/desktop/src/i18n/locales/lg/messages.ts index 59886fabd5f..86fb82fe06d 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Olulimi olukulu\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Olulimi lw'okunoonya...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tewali nnimi zikwatagana zizuuliddwa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Olulimi olukulu\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Olulimi lw'okunoonya...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tewali nnimi zikwatagana zizuuliddwa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 d6451b5e5a7..80e98d5dfc1 100644 --- a/apps/desktop/src/i18n/locales/ln/messages.po +++ b/apps/desktop/src/i18n/locales/ln/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Bakisa monoko" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ln/messages.ts b/apps/desktop/src/i18n/locales/ln/messages.ts index 56e693fad0b..968dbc96c1f 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Monoko ya monene\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Boluka monoko...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Minoko oyo ekokani ezwami te\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Monoko ya monene\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Boluka monoko...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Minoko oyo ekokani ezwami te\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 e7cacca11ae..8f94f1bfdfa 100644 --- a/apps/desktop/src/i18n/locales/lo/messages.po +++ b/apps/desktop/src/i18n/locales/lo/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "ເພີ່ມພາສາ" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lo/messages.ts b/apps/desktop/src/i18n/locales/lo/messages.ts index 82333eebe26..5cd28af62c2 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ພາສາຫຼັກ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ພາສາຄົ້ນຫາ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ແບ່ງປັນຂໍ້ມູນການນຳໃຊ້\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ແອັບ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ບໍ່ພົບພາສາທີ່ກົງກັນ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ພາສາຫຼັກ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ພາສາຄົ້ນຫາ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ແບ່ງປັນຂໍ້ມູນການນຳໃຊ້\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ແອັບ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ບໍ່ພົບພາສາທີ່ກົງກັນ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 4194829833b..a2077876644 100644 --- a/apps/desktop/src/i18n/locales/lt/messages.po +++ b/apps/desktop/src/i18n/locales/lt/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Pridėti kalbą" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lt/messages.ts b/apps/desktop/src/i18n/locales/lt/messages.ts index 01d05b18382..6f1ccc36ff4 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pagrindinė kalba\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Paieškos kalba...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bendrinti naudojimo duomenis\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nerasta atitinkančių kalbų\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pagrindinė kalba\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Paieškos kalba...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bendrinti naudojimo duomenis\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nerasta atitinkančių kalbų\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 ee708b2092f..7048afd0369 100644 --- a/apps/desktop/src/i18n/locales/lv/messages.po +++ b/apps/desktop/src/i18n/locales/lv/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Pievienot valodu" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lv/messages.ts b/apps/desktop/src/i18n/locales/lv/messages.ts index 3ed9f344145..4522b20016c 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Galvenā valoda\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Meklēšanas valoda...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Galvenā valoda\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Meklēšanas valoda...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 8138ea6a0c9..238ad18bd74 100644 --- a/apps/desktop/src/i18n/locales/mg/messages.po +++ b/apps/desktop/src/i18n/locales/mg/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Ampio fiteny" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mg/messages.ts b/apps/desktop/src/i18n/locales/mg/messages.ts index 4b36b3e5a15..597c5d6b99f 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Fiteny fototra\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Fiteny fikarohana...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Mizara angona fampiasana\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tsy misy fiteny mifanandrify hita\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Fiteny fototra\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Fiteny fikarohana...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Mizara angona fampiasana\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tsy misy fiteny mifanandrify hita\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 891b97e1280..7a7ab1d1988 100644 --- a/apps/desktop/src/i18n/locales/mi/messages.po +++ b/apps/desktop/src/i18n/locales/mi/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Tāpiri reo" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mi/messages.ts b/apps/desktop/src/i18n/locales/mi/messages.ts index 6ab7f8b783f..5ef707448e5 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Te reo matua\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Rapu reo...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Te reo matua\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Rapu reo...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 77a745293c3..99032620aa2 100644 --- a/apps/desktop/src/i18n/locales/mk/messages.po +++ b/apps/desktop/src/i18n/locales/mk/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Додајте јазик" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mk/messages.ts b/apps/desktop/src/i18n/locales/mk/messages.ts index 5ac1041514e..9547ecff791 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главен јазик\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Јазик за пребарување...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Споделете податоци за користење\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Апликација\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Не се најдени јазици што се совпаѓаат\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главен јазик\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Јазик за пребарување...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Споделете податоци за користење\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Апликација\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Не се најдени јазици што се совпаѓаат\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 814e32638e0..48c1f6f7c41 100644 --- a/apps/desktop/src/i18n/locales/ml/messages.po +++ b/apps/desktop/src/i18n/locales/ml/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "ഭാഷ ചേർക്കുക" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ml/messages.ts b/apps/desktop/src/i18n/locales/ml/messages.ts index 3a61f4dcfdc..dfbeb30efe2 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"പ്രധാന ഭാഷ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ഭാഷ തിരയുക...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ഉപയോഗ ഡാറ്റ പങ്കിടുക\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ആപ്പ്\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"പൊരുത്തമുള്ള ഭാഷകളൊന്നും കണ്ടെത്തിയില്ല\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"പ്രധാന ഭാഷ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ഭാഷ തിരയുക...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ഉപയോഗ ഡാറ്റ പങ്കിടുക\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ആപ്പ്\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"പൊരുത്തമുള്ള ഭാഷകളൊന്നും കണ്ടെത്തിയില്ല\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 08fb9a6b66b..ebd603d65ba 100644 --- a/apps/desktop/src/i18n/locales/mn/messages.po +++ b/apps/desktop/src/i18n/locales/mn/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Хэл нэмэх" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mn/messages.ts b/apps/desktop/src/i18n/locales/mn/messages.ts index 5f84043d8c9..badb7a6f33e 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Үндсэн хэл\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Хэл хайх...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ашиглалтын өгөгдлийг хуваалцах\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Програм\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Тохирох хэл олдсонгүй\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Үндсэн хэл\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Хэл хайх...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ашиглалтын өгөгдлийг хуваалцах\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Програм\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Тохирох хэл олдсонгүй\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 2d8d2630fba..5392b0281e7 100644 --- a/apps/desktop/src/i18n/locales/mr/messages.po +++ b/apps/desktop/src/i18n/locales/mr/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "भाषा जोडा" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mr/messages.ts b/apps/desktop/src/i18n/locales/mr/messages.ts index 7b70fb2d0f0..d8c6e38969f 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"भाषा शोधा...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"वापर डेटा सामायिक करा\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ॲप\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कोणत्याही जुळणारी भाषा आढळली नाही\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"भाषा शोधा...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"वापर डेटा सामायिक करा\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ॲप\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कोणत्याही जुळणारी भाषा आढळली नाही\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 07a08e0bf8c..a03cc53dfe6 100644 --- a/apps/desktop/src/i18n/locales/ms/messages.po +++ b/apps/desktop/src/i18n/locales/ms/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Tambah bahasa" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ms/messages.ts b/apps/desktop/src/i18n/locales/ms/messages.ts index 5125838031d..9d4c502ff7e 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Bahasa utama\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Bahasa carian...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kongsi data penggunaan\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tiada bahasa yang sepadan ditemui\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Bahasa utama\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Bahasa carian...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kongsi data penggunaan\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tiada bahasa yang sepadan ditemui\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 2370c391361..392bb5f0aec 100644 --- a/apps/desktop/src/i18n/locales/mt/messages.po +++ b/apps/desktop/src/i18n/locales/mt/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Żid il-lingwa" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mt/messages.ts b/apps/desktop/src/i18n/locales/mt/messages.ts index f0d3b5b78ad..a7cea5fc6fb 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingwa prinċipali\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Fittex fil-lingwa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingwa prinċipali\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Fittex fil-lingwa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 509f1741f53..8ee9ec2603e 100644 --- a/apps/desktop/src/i18n/locales/my/messages.po +++ b/apps/desktop/src/i18n/locales/my/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "ဘာသာစကားထည့်ပါ" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/my/messages.ts b/apps/desktop/src/i18n/locales/my/messages.ts index 9b772613860..a7a900e673d 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ပင်မဘာသာစကား\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ရှာဖွေရန် ဘာသာစကား...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"အသုံးပြုမှုဒေတာကို မျှဝေပါ\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"အက်ပ်\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"တူညီသောဘာသာစကားများကိုမတွေ့ပါ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ပင်မဘာသာစကား\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ရှာဖွေရန် ဘာသာစကား...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"အသုံးပြုမှုဒေတာကို မျှဝေပါ\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"အက်ပ်\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"တူညီသောဘာသာစကားများကိုမတွေ့ပါ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 efc118f1639..846900b9956 100644 --- a/apps/desktop/src/i18n/locales/ne/messages.po +++ b/apps/desktop/src/i18n/locales/ne/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "भाषा थप्नुहोस्" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ne/messages.ts b/apps/desktop/src/i18n/locales/ne/messages.ts index 24de20b8283..5668b7a0703 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"भाषा खोज्नुहोस्...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोग डाटा साझेदारी गर्नुहोस्\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"एप\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कुनै मिल्दो भाषा भेटिएन\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"भाषा खोज्नुहोस्...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोग डाटा साझेदारी गर्नुहोस्\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"एप\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कुनै मिल्दो भाषा भेटिएन\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 6569fc34cef..bcfd7ed6ac0 100644 --- a/apps/desktop/src/i18n/locales/nl/messages.po +++ b/apps/desktop/src/i18n/locales/nl/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Taal toevoegen" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/nl/messages.ts b/apps/desktop/src/i18n/locales/nl/messages.ts index 31eab7eec96..11aeceede8c 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hoofdtaal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Zoektaal...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gebruiksgegevens delen\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Geen overeenkomende talen gevonden\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hoofdtaal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Zoektaal...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gebruiksgegevens delen\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Geen overeenkomende talen gevonden\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 7b1fa47f0b3..4dfa6e3887b 100644 --- a/apps/desktop/src/i18n/locales/nn/messages.po +++ b/apps/desktop/src/i18n/locales/nn/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Legg til språk" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/nn/messages.ts b/apps/desktop/src/i18n/locales/nn/messages.ts index e7f0a317f1b..23caafa9535 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedspråk\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Søkespråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del bruksdata\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedspråk\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Søkespråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del bruksdata\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 f764f267133..6a5de0a6994 100644 --- a/apps/desktop/src/i18n/locales/no/messages.po +++ b/apps/desktop/src/i18n/locales/no/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Legg til språk" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/no/messages.ts b/apps/desktop/src/i18n/locales/no/messages.ts index e7f0a317f1b..23caafa9535 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedspråk\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Søkespråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del bruksdata\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedspråk\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Søkespråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del bruksdata\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 637a12baf32..c0622769d57 100644 --- a/apps/desktop/src/i18n/locales/ny/messages.po +++ b/apps/desktop/src/i18n/locales/ny/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Onjezani chilankhulo" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ny/messages.ts b/apps/desktop/src/i18n/locales/ny/messages.ts index 7b9a7ee5923..8981719a7dc 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Chiyankhulo chachikulu\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sakani chilankhulo...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gawani zogwiritsa ntchito\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Palibe zilankhulo zofananira zomwe zapezeka\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Chiyankhulo chachikulu\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sakani chilankhulo...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gawani zogwiritsa ntchito\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Palibe zilankhulo zofananira zomwe zapezeka\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 462cf40ca49..37f1354500a 100644 --- a/apps/desktop/src/i18n/locales/oc/messages.po +++ b/apps/desktop/src/i18n/locales/oc/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Apondre la lenga" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/oc/messages.ts b/apps/desktop/src/i18n/locales/oc/messages.ts index af73965534d..a98e91c9c0b 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lenga principala\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Cercar lenga...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lenga principala\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Cercar lenga...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 59ea7590ef2..afaecddb185 100644 --- a/apps/desktop/src/i18n/locales/or/messages.po +++ b/apps/desktop/src/i18n/locales/or/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "ଭାଷା ଯୋଡନ୍ତୁ |" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/or/messages.ts b/apps/desktop/src/i18n/locales/or/messages.ts index c3473097b0a..a88da127cc4 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ମୁଖ୍ୟ ଭାଷା |\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ସନ୍ଧାନ ଭାଷା ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ବ୍ୟବହାର ତଥ୍ୟ ଅଂଶୀଦାର କରନ୍ତୁ |\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ଆପ୍\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"କ No ଣସି ମେଳକ ଭାଷା ମିଳିଲା ନାହିଁ |\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ମୁଖ୍ୟ ଭାଷା |\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ସନ୍ଧାନ ଭାଷା ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ବ୍ୟବହାର ତଥ୍ୟ ଅଂଶୀଦାର କରନ୍ତୁ |\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ଆପ୍\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"କ No ଣସି ମେଳକ ଭାଷା ମିଳିଲା ନାହିଁ |\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 324fcc195a8..120b14ff583 100644 --- a/apps/desktop/src/i18n/locales/pa/messages.po +++ b/apps/desktop/src/i18n/locales/pa/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "ਭਾਸ਼ਾ ਜੋੜੋ" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/pa/messages.ts b/apps/desktop/src/i18n/locales/pa/messages.ts index 81a0016015c..0e09fcc0bc4 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ਮੁੱਖ ਭਾਸ਼ਾ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ਭਾਸ਼ਾ ਖੋਜੋ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ਵਰਤੋਂ ਡੇਟਾ ਸਾਂਝਾ ਕਰੋ\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ਐਪ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ਕੋਈ ਮੇਲ ਖਾਂਦੀ ਭਾਸ਼ਾ ਨਹੀਂ ਮਿਲੀ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ਮੁੱਖ ਭਾਸ਼ਾ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ਭਾਸ਼ਾ ਖੋਜੋ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ਵਰਤੋਂ ਡੇਟਾ ਸਾਂਝਾ ਕਰੋ\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ਐਪ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ਕੋਈ ਮੇਲ ਖਾਂਦੀ ਭਾਸ਼ਾ ਨਹੀਂ ਮਿਲੀ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 0d8b42fa759..7318da01a65 100644 --- a/apps/desktop/src/i18n/locales/pl/messages.po +++ b/apps/desktop/src/i18n/locales/pl/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Dodaj język" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/pl/messages.ts b/apps/desktop/src/i18n/locales/pl/messages.ts index a3adab8a0ac..9f4425e474f 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Język główny\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Wyszukaj język...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Język główny\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Wyszukaj język...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 443d627d4a1..d6adbbcb2a3 100644 --- a/apps/desktop/src/i18n/locales/ps/messages.po +++ b/apps/desktop/src/i18n/locales/ps/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "ژبه اضافه کړئ" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ps/messages.ts b/apps/desktop/src/i18n/locales/ps/messages.ts index d95814b054b..42c3fa432e7 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اصلي ژبه\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"د ژبې لټون...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"د کارونې ډاټا شریک کړئ\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ایپ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"هیڅ ورته ژبه ونه موندل شوه\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اصلي ژبه\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"د ژبې لټون...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"د کارونې ډاټا شریک کړئ\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ایپ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"هیڅ ورته ژبه ونه موندل شوه\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 86b417825c3..757cf403b4e 100644 --- a/apps/desktop/src/i18n/locales/pt/messages.po +++ b/apps/desktop/src/i18n/locales/pt/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Adicionar idioma" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/pt/messages.ts b/apps/desktop/src/i18n/locales/pt/messages.ts index 0b4ce00961a..f7c961d2a4e 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Pesquisar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nenhum idioma correspondente encontrado\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Pesquisar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nenhum idioma correspondente encontrado\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 31f6a4720bf..3c5b2b2913e 100644 --- a/apps/desktop/src/i18n/locales/ro/messages.po +++ b/apps/desktop/src/i18n/locales/ro/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Adăugați limba" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ro/messages.ts b/apps/desktop/src/i18n/locales/ro/messages.ts index 71b8222603c..f1c3eebdfd2 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Limba principală\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Căutați limba...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Limba principală\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Căutați limba...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 19eb1799e0d..43bf792ab7b 100644 --- a/apps/desktop/src/i18n/locales/ru/messages.po +++ b/apps/desktop/src/i18n/locales/ru/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Добавить язык" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ru/messages.ts b/apps/desktop/src/i18n/locales/ru/messages.ts index ef6263dc231..f7597da20a6 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основной язык\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Язык поиска...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Поделиться данными об использовании\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Приложение\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Подходящие языки не найдены\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основной язык\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Язык поиска...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Поделиться данными об использовании\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Приложение\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Подходящие языки не найдены\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 3258ad15294..6787bf7a21f 100644 --- a/apps/desktop/src/i18n/locales/sa/messages.po +++ b/apps/desktop/src/i18n/locales/sa/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "भाषा योजयतु" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sa/messages.ts b/apps/desktop/src/i18n/locales/sa/messages.ts index 992413052f8..305a47e4711 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्यभाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"भाषां अन्वेष्टुम्...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोगदत्तांशं साझां कुर्वन्तु\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"अनुप्रयोग\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"न सङ्गतभाषा लभ्यते\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्यभाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"भाषां अन्वेष्टुम्...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोगदत्तांशं साझां कुर्वन्तु\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"अनुप्रयोग\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"न सङ्गतभाषा लभ्यते\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 5d1aba0003d..0a619f753c5 100644 --- a/apps/desktop/src/i18n/locales/sd/messages.po +++ b/apps/desktop/src/i18n/locales/sd/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "ٻولي شامل ڪريو" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sd/messages.ts b/apps/desktop/src/i18n/locales/sd/messages.ts index 76a626d5189..38a3754b990 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مکيه ٻولي\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ٻولي ڳولھيو...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"استعمال ڊيٽا حصيداري ڪريو\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ايپ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ڪابه ملندڙ ٻوليون نه مليون\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مکيه ٻولي\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ٻولي ڳولھيو...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"استعمال ڊيٽا حصيداري ڪريو\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ايپ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ڪابه ملندڙ ٻوليون نه مليون\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 18bfd865871..b839ac93868 100644 --- a/apps/desktop/src/i18n/locales/si/messages.po +++ b/apps/desktop/src/i18n/locales/si/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "භාෂාව එක් කරන්න" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/si/messages.ts b/apps/desktop/src/i18n/locales/si/messages.ts index 605d8f49187..bf3938f389d 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ප්‍රධාන භාෂාව\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"සෙවුම් භාෂාව...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"භාවිතා දත්ත බෙදා ගන්න\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"යෙදුම\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ගැළපෙන භාෂා කිසිවක් හමු නොවීය\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ප්‍රධාන භාෂාව\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"සෙවුම් භාෂාව...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"භාවිතා දත්ත බෙදා ගන්න\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"යෙදුම\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ගැළපෙන භාෂා කිසිවක් හමු නොවීය\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 92f1737ae0e..cc6a2c6e024 100644 --- a/apps/desktop/src/i18n/locales/sk/messages.po +++ b/apps/desktop/src/i18n/locales/sk/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Pridať jazyk" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sk/messages.ts b/apps/desktop/src/i18n/locales/sk/messages.ts index 131c1c45945..2e02a803be6 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hlavný jazyk\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Jazyk vyhľadávania...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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í\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hlavný jazyk\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Jazyk vyhľadávania...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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í\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 43186f2267a..5c5aa03b844 100644 --- a/apps/desktop/src/i18n/locales/sl/messages.po +++ b/apps/desktop/src/i18n/locales/sl/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Dodaj jezik" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sl/messages.ts b/apps/desktop/src/i18n/locales/sl/messages.ts index a6d6626f17a..2f4c7f3a194 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Jezik iskanja ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ni ustreznih jezikov\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Jezik iskanja ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ni ustreznih jezikov\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 966ad3852c0..6a9577e5910 100644 --- a/apps/desktop/src/i18n/locales/sn/messages.po +++ b/apps/desktop/src/i18n/locales/sn/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Wedzera mutauro" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sn/messages.ts b/apps/desktop/src/i18n/locales/sn/messages.ts index aa27ed5fabc..d3dc4084c10 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Mutauro mukuru\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Tsvaga mutauro...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Goverana data rekushandisa\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Hapana mitauro inoenderana yawanikwa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Mutauro mukuru\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Tsvaga mutauro...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Goverana data rekushandisa\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Hapana mitauro inoenderana yawanikwa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 45cd4bc516d..5b1aa51ff51 100644 --- a/apps/desktop/src/i18n/locales/so/messages.po +++ b/apps/desktop/src/i18n/locales/so/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Kudar luqadda" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/so/messages.ts b/apps/desktop/src/i18n/locales/so/messages.ts index 53db16e6f75..c190bb1ef1f 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Luqadda ugu weyn\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Luqadda raadi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Lama helin luuqado u dhigma\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Luqadda ugu weyn\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Luqadda raadi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Lama helin luuqado u dhigma\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 4a36fddaa42..65b73f69213 100644 --- a/apps/desktop/src/i18n/locales/sq/messages.po +++ b/apps/desktop/src/i18n/locales/sq/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Shto gjuhën" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sq/messages.ts b/apps/desktop/src/i18n/locales/sq/messages.ts index 358b1a03ab8..7c78c33a5b1 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Gjuha kryesore\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Kërko gjuhën...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Gjuha kryesore\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Kërko gjuhën...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 9a63ae9de09..e0b3c648b72 100644 --- a/apps/desktop/src/i18n/locales/sr/messages.po +++ b/apps/desktop/src/i18n/locales/sr/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Додајте језик" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sr/messages.ts b/apps/desktop/src/i18n/locales/sr/messages.ts index ed1e0fbb5f5..a535c28d3d3 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главни језик\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Претражи језик...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Делите податке о коришћењу\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Апп\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Није пронађен ниједан одговарајући језик\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главни језик\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Претражи језик...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Делите податке о коришћењу\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Апп\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Није пронађен ниједан одговарајући језик\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 37afd7dac96..8fa435286ea 100644 --- a/apps/desktop/src/i18n/locales/su/messages.po +++ b/apps/desktop/src/i18n/locales/su/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Tambahkeun basa" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/su/messages.ts b/apps/desktop/src/i18n/locales/su/messages.ts index 97d422a4cde..e882d172ab0 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Basa utama\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Teangan basa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bagikeun data pamakean\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Teu kapanggih basa nu cocog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Basa utama\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Teangan basa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bagikeun data pamakean\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Teu kapanggih basa nu cocog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 e45d5fc1406..94409153ff8 100644 --- a/apps/desktop/src/i18n/locales/sv/messages.po +++ b/apps/desktop/src/i18n/locales/sv/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Lägg till språk" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sv/messages.ts b/apps/desktop/src/i18n/locales/sv/messages.ts index d436935a031..69f91b3de1a 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Huvudspråk\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sökspråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Dela användningsdata\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Inga matchande språk hittades\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Huvudspråk\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sökspråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Dela användningsdata\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Inga matchande språk hittades\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 1837582de30..c3a4323d265 100644 --- a/apps/desktop/src/i18n/locales/sw/messages.po +++ b/apps/desktop/src/i18n/locales/sw/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Ongeza lugha" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sw/messages.ts b/apps/desktop/src/i18n/locales/sw/messages.ts index 3cfaa30e548..6d2d7174441 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lugha kuu\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Tafuta lugha...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Hakuna lugha zinazolingana zilizopatikana\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lugha kuu\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Tafuta lugha...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Hakuna lugha zinazolingana zilizopatikana\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 ea4ae4db04d..c8f76662072 100644 --- a/apps/desktop/src/i18n/locales/ta/messages.po +++ b/apps/desktop/src/i18n/locales/ta/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "மொழியைச் சேர்" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ta/messages.ts b/apps/desktop/src/i18n/locales/ta/messages.ts index 50f4323f900..0e300987fa3 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"முக்கிய மொழி\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"தேடல் மொழி...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"பயன்பாட்டுத் தரவைப் பகிரவும்\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"பயன்பாடு\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"பொருந்தும் மொழிகள் எதுவும் இல்லை\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"முக்கிய மொழி\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"தேடல் மொழி...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"பயன்பாட்டுத் தரவைப் பகிரவும்\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"பயன்பாடு\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"பொருந்தும் மொழிகள் எதுவும் இல்லை\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 4ab01c3e1a2..db46f43fb50 100644 --- a/apps/desktop/src/i18n/locales/te/messages.po +++ b/apps/desktop/src/i18n/locales/te/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "భాషను జోడించు" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/te/messages.ts b/apps/desktop/src/i18n/locales/te/messages.ts index 90494e9454b..a9a5ea5c8d3 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ప్రధాన భాష\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"భాషను శోధించండి...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"వినియోగ డేటాను భాగస్వామ్యం చేయండి\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"యాప్\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"సరిపోయే భాషలు ఏవీ కనుగొనబడలేదు\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ప్రధాన భాష\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"భాషను శోధించండి...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"వినియోగ డేటాను భాగస్వామ్యం చేయండి\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"యాప్\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"సరిపోయే భాషలు ఏవీ కనుగొనబడలేదు\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 b7bb86928c8..209bd7809ff 100644 --- a/apps/desktop/src/i18n/locales/tg/messages.po +++ b/apps/desktop/src/i18n/locales/tg/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Иловаи забон" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tg/messages.ts b/apps/desktop/src/i18n/locales/tg/messages.ts index ea1ae34e599..17d280069a0 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Забони асосӣ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Забони ҷустуҷӯ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Мубодилаи маълумоти истифода\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Барнома\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ягон забонҳои мувофиқ ёфт нашуд\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Забони асосӣ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Забони ҷустуҷӯ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Мубодилаи маълумоти истифода\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Барнома\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ягон забонҳои мувофиқ ёфт нашуд\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 5c49327785e..73aa024a269 100644 --- a/apps/desktop/src/i18n/locales/th/messages.po +++ b/apps/desktop/src/i18n/locales/th/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "เพิ่มภาษา" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/th/messages.ts b/apps/desktop/src/i18n/locales/th/messages.ts index 93d857196ab..70ec06f40ee 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ภาษาหลัก\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ภาษาการค้นหา...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"แชร์ข้อมูลการใช้งาน\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"แอป\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ไม่พบภาษาที่ตรงกัน\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ภาษาหลัก\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ภาษาการค้นหา...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"แชร์ข้อมูลการใช้งาน\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"แอป\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ไม่พบภาษาที่ตรงกัน\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 bb414c436d7..f40f08648a3 100644 --- a/apps/desktop/src/i18n/locales/tk/messages.po +++ b/apps/desktop/src/i18n/locales/tk/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Dil goşuň" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tk/messages.ts b/apps/desktop/src/i18n/locales/tk/messages.ts index b1ff8c3fd1e..51dd2e67879 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Esasy dil\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Gözleg dili ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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ň\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Gabat gelýän diller tapylmady\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Esasy dil\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Gözleg dili ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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ň\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Gabat gelýän diller tapylmady\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 9fa1aaef4fe..2078a9dbd85 100644 --- a/apps/desktop/src/i18n/locales/tl/messages.po +++ b/apps/desktop/src/i18n/locales/tl/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Magdagdag ng wika" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tl/messages.ts b/apps/desktop/src/i18n/locales/tl/messages.ts index c269258efd0..7d02522c5f3 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pangunahing wika\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Wika sa paghahanap...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Walang nakitang katugmang mga wika\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pangunahing wika\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Wika sa paghahanap...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Walang nakitang katugmang mga wika\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 5bca9b0207c..7adbf0db895 100644 --- a/apps/desktop/src/i18n/locales/tr/messages.po +++ b/apps/desktop/src/i18n/locales/tr/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Dil ekle" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tr/messages.ts b/apps/desktop/src/i18n/locales/tr/messages.ts index 12a9aeabcf4..edcbec44f27 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ana dil\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Dil ara...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Eşleşen dil bulunamadı\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ana dil\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Dil ara...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Eşleşen dil bulunamadı\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 b2a12ff462c..ee24dc45d11 100644 --- a/apps/desktop/src/i18n/locales/tt/messages.po +++ b/apps/desktop/src/i18n/locales/tt/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Тел өстәгез" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tt/messages.ts b/apps/desktop/src/i18n/locales/tt/messages.ts index c77e1a3cc27..967323565c5 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Эзләү теле ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Куллану мәгълүматларын бүлешү\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"кушымта\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Бер-берсенә туры килгән телләр табылмады\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Эзләү теле ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Куллану мәгълүматларын бүлешү\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"кушымта\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Бер-берсенә туры килгән телләр табылмады\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 565dfd3fabd..4168381845d 100644 --- a/apps/desktop/src/i18n/locales/uk/messages.po +++ b/apps/desktop/src/i18n/locales/uk/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Додати мову" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/uk/messages.ts b/apps/desktop/src/i18n/locales/uk/messages.ts index 3f8c53df9b7..1df7b30914a 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основна мова\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Мова пошуку...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Обмін даними про використання\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Програма\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Відповідних мов не знайдено\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основна мова\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Мова пошуку...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Обмін даними про використання\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Програма\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Відповідних мов не знайдено\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 07f1feeb50b..e415dbe9fe8 100644 --- a/apps/desktop/src/i18n/locales/ur/messages.po +++ b/apps/desktop/src/i18n/locales/ur/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "زبان شامل کریں" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ur/messages.ts b/apps/desktop/src/i18n/locales/ur/messages.ts index 0689394766d..20ca08e3bcf 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مرکزی زبان\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"تلاش زبان...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"استعمال کا ڈیٹا شیئر کریں\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ایپ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"کوئی مماثل زبانیں نہیں ملی\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مرکزی زبان\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"تلاش زبان...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"استعمال کا ڈیٹا شیئر کریں\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ایپ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"کوئی مماثل زبانیں نہیں ملی\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 27c9ff8f987..fd5e2267bc2 100644 --- a/apps/desktop/src/i18n/locales/uz/messages.po +++ b/apps/desktop/src/i18n/locales/uz/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Til qo'shish" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/uz/messages.ts b/apps/desktop/src/i18n/locales/uz/messages.ts index af27a16defc..dee78ee4984 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Asosiy til\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Tilni qidirish...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Mos tillar topilmadi\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Asosiy til\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Tilni qidirish...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Mos tillar topilmadi\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 21e2af9a7f6..ffae0682e3d 100644 --- a/apps/desktop/src/i18n/locales/vi/messages.po +++ b/apps/desktop/src/i18n/locales/vi/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Thêm ngôn ngữ" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/vi/messages.ts b/apps/desktop/src/i18n/locales/vi/messages.ts index f5e47841dfa..5f3ccfa16e2 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ngôn ngữ chính\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Ngôn ngữ tìm kiếm...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ngôn ngữ chính\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Ngôn ngữ tìm kiếm...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 3ca2cd0a0d8..6734419ad26 100644 --- a/apps/desktop/src/i18n/locales/wo/messages.po +++ b/apps/desktop/src/i18n/locales/wo/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Yokk làkk" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/wo/messages.ts b/apps/desktop/src/i18n/locales/wo/messages.ts index ff5ba9300fc..c4d72007e67 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Làkk wi gëna am solo\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Làkku seetlu...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Làkk wi gëna am solo\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Làkku seetlu...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"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\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 175126dcd3b..d0f285d7995 100644 --- a/apps/desktop/src/i18n/locales/xh/messages.po +++ b/apps/desktop/src/i18n/locales/xh/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Yongeza ulwimi" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/xh/messages.ts b/apps/desktop/src/i18n/locales/xh/messages.ts index 2e581e92eeb..602afb06d1a 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ulwimi oluphambili\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Khangela ulwimi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Yabelana ngedatha yosetyenziso\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Akukho lwimi ludibanayo lufunyenweyo\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ulwimi oluphambili\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Khangela ulwimi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Yabelana ngedatha yosetyenziso\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Akukho lwimi ludibanayo lufunyenweyo\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 bec7de1abf8..6d28c4da179 100644 --- a/apps/desktop/src/i18n/locales/yi/messages.po +++ b/apps/desktop/src/i18n/locales/yi/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "צוגעבן שפּראַך" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/yi/messages.ts b/apps/desktop/src/i18n/locales/yi/messages.ts index c391d54fe5e..503d0972d7f 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"הויפּט שפּראַך\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"זוכן שפּראַך...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ייַנטיילן באַניץ דאַטן\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"אַפּ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"קיין שטיפעריש שפראכן געפונען\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"הויפּט שפּראַך\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"זוכן שפּראַך...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ייַנטיילן באַניץ דאַטן\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"אַפּ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"קיין שטיפעריש שפראכן געפונען\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 94d7d2eba20..175d9858054 100644 --- a/apps/desktop/src/i18n/locales/yo/messages.po +++ b/apps/desktop/src/i18n/locales/yo/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Fi ede kun" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/yo/messages.ts b/apps/desktop/src/i18n/locales/yo/messages.ts index e5f69a56111..464b588288c 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ede akọkọ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Ede wa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Pin data lilo\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ede akọkọ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Ede wa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Pin data lilo\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"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_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 4ad76e29c2e..05d9dcc0320 100644 --- a/apps/desktop/src/i18n/locales/zh/messages.po +++ b/apps/desktop/src/i18n/locales/zh/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "添加语言" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/zh/messages.ts b/apps/desktop/src/i18n/locales/zh/messages.ts index 0d2cb1dcc0d..cfeefd36fb7 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"主要语言\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"搜索语言...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"分享使用数据\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"应用\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"未找到匹配的语言\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"主要语言\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"搜索语言...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"分享使用数据\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"应用\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"未找到匹配的语言\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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 0df57705ce8..452ca7e7ff9 100644 --- a/apps/desktop/src/i18n/locales/zu/messages.po +++ b/apps/desktop/src/i18n/locales/zu/messages.po @@ -256,6 +256,10 @@ msgstr "" msgid "Add at least one example summary." msgstr "" +#: src/session/folder-instructions.tsx +msgid "Add context for this folder" +msgstr "" + #: src/settings/sync/index.tsx msgid "Add device" msgstr "" @@ -264,6 +268,10 @@ msgstr "" msgid "Add example" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Add file" +msgstr "" + #: src/settings/general/spoken-languages.tsx msgid "Add language" msgstr "Engeza ulimi" @@ -939,6 +947,10 @@ msgstr "" msgid "Choose folder" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Choose folder icon" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Choose how Anarlog appears in the Dock." msgstr "" @@ -1001,6 +1013,7 @@ msgstr "" #: src/contacts/related-notes.tsx #: src/contacts/shared.tsx +#: src/folders/sidebar.tsx #: src/settings/ai/shared/provider-search.tsx #: src/sidebar/automations.tsx #: src/sidebar/settings.tsx @@ -1317,6 +1330,10 @@ msgstr "" msgid "Contacts" msgstr "" +#: src/folders/folder-editor.tsx +msgid "Context" +msgstr "" + #: src/imports/screen.tsx #: src/onboarding/calendar.tsx msgid "Continue" @@ -1513,8 +1530,8 @@ msgstr "" msgid "Could not use the selected model" msgstr "" +#: src/folders/sidebar.tsx #: src/settings/team/index.tsx -#: src/sidebar/folder-materials.tsx msgid "Create" msgstr "" @@ -1625,6 +1642,7 @@ msgid "Default sharing" msgstr "" #: src/contacts/contact-page-header.tsx +#: src/folders/folder-editor.tsx #: src/session/components/outer-header/overflow/delete.tsx #: src/sidebar/automations.tsx #: src/sidebar/timeline/index.tsx @@ -1661,6 +1679,7 @@ msgstr "" msgid "Delete Event" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Delete folder" msgstr "" @@ -2091,10 +2110,15 @@ msgstr "" msgid "Folder" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "Folder instructions" +#: src/folders/folder-editor.tsx +msgid "Folder actions" msgstr "" +#: src/session/folder-instructions.tsx +msgid "Folder context" +msgstr "" + +#: src/folders/folder-editor.tsx #: src/sidebar/folder-name-dialog.tsx msgid "Folder name" msgstr "" @@ -2103,6 +2127,10 @@ msgstr "" msgid "Folder: {currentPath}" msgstr "" +#: src/sidebar/settings.tsx +msgid "Folders" +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Food & Drink" msgstr "" @@ -2275,10 +2303,6 @@ msgstr "" msgid "History {0}/{1}" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "How chat should use notes in this folder" -msgstr "" - #: src/settings/ai/llm/subscriptions/connect.tsx msgid "How to get a Kimi Code key" msgstr "" @@ -2680,6 +2704,7 @@ msgstr "" msgid "Match your device" msgstr "" +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Materials" msgstr "" @@ -2872,15 +2897,15 @@ msgstr "" msgid "New chat" msgstr "" +#: src/folders/sidebar.tsx +msgid "New folder" +msgstr "" + #: src/main/empty.tsx #: src/main/windows-title-bar.tsx msgid "New Note" msgstr "" -#: src/sidebar/folder-materials.tsx -msgid "New subfolder" -msgstr "" - #: src/session/components/note-input/raw.tsx msgid "New template" msgstr "" @@ -2956,7 +2981,6 @@ msgstr "" msgid "No emoji found" msgstr "" -#: src/session/components/folder-picker.tsx #: src/sidebar/timeline/utils/index.ts msgid "No folder" msgstr "" @@ -2965,14 +2989,26 @@ msgstr "" msgid "No folder selected yet." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders found" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders found." msgstr "" +#: src/folders/sidebar.tsx +msgid "No folders yet" +msgstr "" + #: src/session/components/folder-picker.tsx msgid "No folders yet." msgstr "" +#: src/folders/index.tsx +msgid "No folders yet. Create one to group notes and materials." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "No icons found" msgstr "" @@ -3110,8 +3146,10 @@ msgstr "" msgid "Notes list" msgstr "" +#. js-lingui-explicit-id +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx -msgid "Notes stay in All notes. Materials and subfolders will be deleted." +msgid "Notes stay in All notes. Materials in this folder will be deleted." msgstr "" #. placeholder {0}: latestResult.conflicts @@ -3628,6 +3666,7 @@ msgid "Remove" msgstr "" #. placeholder {0}: material.filename +#: src/folders/folder-editor.tsx #: src/sidebar/folder-materials.tsx msgid "Remove {0}" msgstr "" @@ -3914,6 +3953,10 @@ msgstr "" msgid "Search emoji..." msgstr "" +#: src/folders/sidebar.tsx +msgid "Search folders..." +msgstr "" + #: src/templates/template-icon-picker.tsx msgid "Search icons..." msgstr "" @@ -3985,6 +4028,10 @@ msgstr "" msgid "Security" msgstr "" +#: src/session/components/folder-picker.tsx +msgid "See all folders" +msgstr "" + #: src/session/components/note-input/template-picker.tsx msgid "See all templates" msgstr "" @@ -5285,6 +5332,10 @@ msgstr "" msgid "What are my action items from this meeting?" msgstr "" +#: src/folders/folder-editor.tsx +msgid "What these notes are usually about" +msgstr "" + #: src/chat/components/body/empty.tsx msgid "What were the key decisions that have been made?" msgstr "" diff --git a/apps/desktop/src/i18n/locales/zu/messages.ts b/apps/desktop/src/i18n/locales/zu/messages.ts index 956ffc42acf..9eca4c06b74 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ulimi oluyinhloko\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"2ya2in\":[\"Notes stay in All notes. Materials and subfolders will be deleted.\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5NJ_6U\":[\"New subfolder\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sesha ulimi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Yabelana ngedatha yokusetshenziswa\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Azikho izilimi ezifanayo ezitholiwe\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lyn-IL\":[\"Folder instructions\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sFChyn\":[\"How chat should use notes in this folder\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions 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\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ulimi oluyinhloko\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18uYOB\":[\"Add material\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1DKOeh\":[\"Show tags above the title.\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Mhlmr\":[\"Members on a claimed email domain must sign in with SSO instead of Google, GitHub, or email.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"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...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2wxgft\":[\"Rename\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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\"],\"5qpRW-\":[\"Read meeting controls and visible chat.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"6zf8WO\":[\"What these notes are usually about\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"8wkL05\":[\"A folder with this name already exists.\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"96G6Re\":[\"New folder\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn 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\"],\"AVfHvg\":[\"Grouping\"],\"AYFMWJ\":[\"Add context for this folder\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AhEcb4\":[\"Choose a .bin model\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sesha ulimi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"BpLEOh\":[\"Ordering, \",[\"orderingLabel\"]],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen 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\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"DhTbJv\":[\"Human\"],\"Dw9PEW\":[\"Choose a transcription model\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fam7W8\":[\"Could not save the folder.\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Yabelana ngedatha yokusetshenziswa\"],\"GAFQY8\":[\"Finish checkout in your browser to unlock more, then return to Anarlog.\"],\"GExs1H\":[\"Session note views\"],\"GI75cd\":[\"Everyone in the workspace\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HSh8u_\":[\"Folders\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"HztZt8\":[\"Everyone in \",[\"workspaceLabel\"]],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jw3O4_\":[\"Could not clear the selected model\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K0UBDD\":[\"See all folders\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported 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\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NZgZhv\":[\"Rename folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbFtQm\":[\"Delete folder\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"Notes stay in All notes. Materials in this folder will be deleted.\":[\"Notes stay in All notes. This folder, its nested folders, and all their materials will be deleted.\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"OYHzN1\":[\"Tags\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QA65E3\":[\"No folders yet. Create one to group notes and materials.\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QVCkm8\":[\"Choose extra fields to show above each note title.\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"S0lxf_\":[\"Select default sharing\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"Ssdrw4\":[\"Deprecated\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UsGJLu\":[\"Choose folder icon\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"V925WN\":[\"Show the folder above the title.\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"aywdyd\":[\"No folders found\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bD7tkU\":[\"Ordering\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing 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.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"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\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jvDhgk\":[\"whisper.cpp models\"],\"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\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kNqMMd\":[\"Folder\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Azikho izilimi ezifanayo ezitholiwe\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"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\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mYGY3B\":[\"Date\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"magLcz\":[\"Folder context\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oQ_KtC\":[\"Folder actions\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"osPt0x\":[\"Read meeting controls and visible chat\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pF2Ja-\":[\"People in the meeting\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rXrG-N\":[\"Search folders...\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tXLZQo\":[\"Sign in to share\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"vjsyMv\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat.\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"vw2bS-\":[\"Grouping, \",[\"groupingLabel\"]],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog 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/main/body.test.tsx b/apps/desktop/src/main/body.test.tsx index 0e39734af59..66af580abb1 100644 --- a/apps/desktop/src/main/body.test.tsx +++ b/apps/desktop/src/main/body.test.tsx @@ -364,6 +364,7 @@ describe("ClassicMainBody", () => { ["contacts", { state: { selected: null } }], ["templates", { state: { selectedMineId: null, selectedWebIndex: null } }], ["automations", {}], + ["folders", {}], ])("keeps the %s left sidebar fixed", (type, extraTabState) => { mocks.currentTab = { active: true, @@ -422,6 +423,7 @@ describe("ClassicMainBody", () => { ["calendar", {}], ["contacts", { state: { selected: null } }], ["automations", {}], + ["folders", {}], ["templates", { state: { selectedMineId: null, selectedWebIndex: null } }], ] as const)( "leaves the %s chrome row back button to the sidebar header", diff --git a/apps/desktop/src/main/shell-frame.test.tsx b/apps/desktop/src/main/shell-frame.test.tsx index f4a0c935313..3d893764df6 100644 --- a/apps/desktop/src/main/shell-frame.test.tsx +++ b/apps/desktop/src/main/shell-frame.test.tsx @@ -142,7 +142,7 @@ describe("ClassicMainShellFrame", () => { ).toBe("top-borderless"); }); - it.each(["settings", "automations"])( + it.each(["settings", "automations", "folders"])( "uses left-edge main surface chrome for the %s custom sidebar", (type) => { mocks.currentTab = { type }; diff --git a/apps/desktop/src/session/components/folder-picker.test.tsx b/apps/desktop/src/session/components/folder-picker.test.tsx index e1157211fcf..10be7431ea8 100644 --- a/apps/desktop/src/session/components/folder-picker.test.tsx +++ b/apps/desktop/src/session/components/folder-picker.test.tsx @@ -13,14 +13,31 @@ const mocks = vi.hoisted(() => ({ createNamedFolder: vi.fn(() => Promise.resolve("clients")), folderId: "", folderPaths: [] as string[], + icons: {} as Record, + openNew: vi.fn(), + setSelectedPath: vi.fn(), updateSession: vi.fn(() => Promise.resolve()), })); +vi.mock("~/folders/selection", () => ({ + useFolderSelection: ( + selector: (state: { + setSelectedPath: typeof mocks.setSelectedPath; + }) => unknown, + ) => selector({ setSelectedPath: mocks.setSelectedPath }), +})); + +vi.mock("~/store/zustand/tabs", () => ({ + useTabs: (selector: (state: { openNew: typeof mocks.openNew }) => unknown) => + selector({ openNew: mocks.openNew }), +})); + vi.mock("~/session/folder-catalog", () => ({ createNamedFolder: mocks.createNamedFolder, })); vi.mock("~/session/queries", () => ({ + useFolderIcons: () => mocks.icons, useFolderPaths: () => mocks.folderPaths, useSession: () => ({ folder_id: mocks.folderId }), useUpdateSession: () => mocks.updateSession, @@ -30,7 +47,10 @@ describe("FolderPicker", () => { beforeEach(() => { mocks.folderId = ""; mocks.folderPaths = ["personal", "work"]; + mocks.icons = {}; mocks.createNamedFolder.mockClear(); + mocks.openNew.mockClear(); + mocks.setSelectedPath.mockClear(); mocks.updateSession.mockClear(); mocks.createNamedFolder.mockResolvedValue("clients"); globalThis.ResizeObserver = class { @@ -109,6 +129,7 @@ describe("FolderPicker", () => { expect(mocks.createNamedFolder).toHaveBeenCalledWith("clients"); await waitFor(() => { + expect(mocks.setSelectedPath).toHaveBeenCalledWith("clients"); expect(mocks.updateSession).toHaveBeenCalledWith({ folder_id: "clients", }); @@ -134,13 +155,28 @@ describe("FolderPicker", () => { }); }); + it("highlights the current folder and does not offer no folder", () => { + mocks.folderId = "work"; + + render(); + + fireEvent.click(screen.getByRole("combobox", { name: "Folder: work" })); + + expect( + screen + .getByRole("option", { name: "work" }) + .getAttribute("data-selected"), + ).toBe("true"); + expect(screen.queryByRole("option", { name: "No folder" })).toBeNull(); + }); + it("can remove the current note from its folder", () => { mocks.folderId = "work"; render(); fireEvent.click(screen.getByRole("combobox", { name: "Folder: work" })); - fireEvent.click(screen.getByRole("option", { name: "No folder" })); + fireEvent.click(screen.getByRole("option", { name: "work" })); expect(mocks.updateSession).toHaveBeenCalledWith({ folder_id: "" }); }); @@ -158,4 +194,16 @@ describe("FolderPicker", () => { expect(mocks.updateSession).toHaveBeenCalledWith({ folder_id: "work" }); }); + + it("opens the folders workspace from see all folders", () => { + mocks.folderId = "work"; + + render(); + + fireEvent.click(screen.getByRole("combobox", { name: "Folder: work" })); + fireEvent.click(screen.getByRole("button", { name: "See all folders" })); + + expect(mocks.setSelectedPath).toHaveBeenCalledWith("work"); + expect(mocks.openNew).toHaveBeenCalledWith({ type: "folders" }); + }); }); diff --git a/apps/desktop/src/session/components/folder-picker.tsx b/apps/desktop/src/session/components/folder-picker.tsx index 913ba9ceadf..808b80c256e 100644 --- a/apps/desktop/src/session/components/folder-picker.tsx +++ b/apps/desktop/src/session/components/folder-picker.tsx @@ -1,5 +1,5 @@ import { useLingui } from "@lingui/react/macro"; -import { Check, Folder, FolderSimple, Plus } from "@phosphor-icons/react"; +import { CaretRight, Check, Plus } from "@phosphor-icons/react"; import { useCallback, useMemo, useState } from "react"; import { @@ -9,7 +9,6 @@ import { CommandInput, CommandItem, CommandList, - CommandSeparator, } from "@anlg/ui/components/ui/command"; import { AppFloatingPanel, @@ -21,13 +20,18 @@ import { useSquircleRef } from "@anlg/ui/hooks/use-squircle"; import { squircleFocusVisibleClassName } from "@anlg/ui/lib/squircle"; import { cn } from "@anlg/utils"; +import { useFolderSelection } from "~/folders/selection"; import { createNamedFolder } from "~/session/folder-catalog"; +import { resolvedFolderIcon } from "~/session/folder-icon"; import { normalizeFolderPath } from "~/session/folders"; import { + useFolderIcons, useFolderPaths, useSession, useUpdateSession, } from "~/session/queries"; +import { useTabs } from "~/store/zustand/tabs"; +import { TemplateIconGlyph } from "~/templates/template-icon"; const filterFolders = (value: string, search: string) => { const haystack = value.toLocaleLowerCase(); @@ -46,9 +50,13 @@ export function FolderPicker({ const triggerRef = useSquircleRef(); const [open, setOpen] = useState(false); const [query, setQuery] = useState(""); + const [highlighted, setHighlighted] = useState(""); const folderId = useSession(sessionId)?.folder_id ?? ""; const folderPaths = useFolderPaths(); + const folderIcons = useFolderIcons(); const updateSession = useUpdateSession(sessionId); + const openNew = useTabs((state) => state.openNew); + const setSelectedPath = useFolderSelection((state) => state.setSelectedPath); const currentPath = normalizeFolderPath(folderId) ?? ""; const folders = useMemo(() => { if (currentPath && !folderPaths.includes(currentPath)) { @@ -62,12 +70,17 @@ export function FolderPicker({ Boolean(normalizedQuery) && !folders.includes(normalizedQuery ?? ""); const folderName = normalizedQuery ?? ""; - const handleOpenChange = useCallback((nextOpen: boolean) => { - setOpen(nextOpen); - if (!nextOpen) { + const handleOpenChange = useCallback( + (nextOpen: boolean) => { + setOpen(nextOpen); + if (nextOpen) { + setHighlighted(currentPath); + return; + } setQuery(""); - } - }, []); + }, + [currentPath], + ); const handleSelect = useCallback( (nextFolderId: string) => { @@ -86,6 +99,7 @@ export function FolderPicker({ try { if (normalized && !folderPaths.includes(normalized)) { await createNamedFolder(normalized); + setSelectedPath(normalized); } await updateSession({ folder_id: normalized }); } catch (error) { @@ -93,9 +107,18 @@ export function FolderPicker({ } })(); }, - [folderId, folderPaths, updateSession], + [folderId, folderPaths, setSelectedPath, updateSession], ); + const handleSeeAllFolders = useCallback(() => { + setOpen(false); + setQuery(""); + if (currentPath) { + setSelectedPath(currentPath); + } + openNew({ type: "folders" }); + }, [currentPath, openNew, setSelectedPath]); + return ( @@ -119,7 +142,10 @@ export function FolderPicker({ open && "bg-accent text-foreground", ])} > - ); diff --git a/apps/desktop/src/session/components/note-input/header.test.tsx b/apps/desktop/src/session/components/note-input/header.test.tsx index ff341c22073..8bab9d69f44 100644 --- a/apps/desktop/src/session/components/note-input/header.test.tsx +++ b/apps/desktop/src/session/components/note-input/header.test.tsx @@ -192,6 +192,7 @@ vi.mock("~/session/queries", () => ({ title: "Summary", }), useEnhancedNoteRecords: () => [{ id: "note-1" }], + useFolderIcons: () => ({}), useFolderPaths: () => [], useSession: () => ({ folder_id: "", diff --git a/apps/desktop/src/session/folder-catalog.test.ts b/apps/desktop/src/session/folder-catalog.test.ts index 3a5f65aedb5..ba67e891ac9 100644 --- a/apps/desktop/src/session/folder-catalog.test.ts +++ b/apps/desktop/src/session/folder-catalog.test.ts @@ -35,6 +35,7 @@ import { deleteNamedFolder, ensureFolderCatalog, renameNamedFolder, + updateFolderIcon, updateFolderInstructions, } from "./folder-catalog"; @@ -147,6 +148,23 @@ describe("folder catalog", () => { expect(mocks.deleteFolder).toHaveBeenCalledWith("CS 101"); }); + it("saves a folder icon on the catalog row", async () => { + await updateFolderIcon("CS 101", { + type: "icon", + value: "target", + color: "#5b67d8", + }); + + expect(mocks.executeTransaction).toHaveBeenCalledTimes(1); + const statements = mocks.executeTransaction.mock.calls[0]![0]; + const update = statements[statements.length - 1]; + expect(update.sql).toContain("icon_json = ?"); + expect(update.params).toEqual([ + '{"type":"icon","value":"target","color":"#5b67d8"}', + "CS 101", + ]); + }); + it("saves folder chat instructions on the catalog row", async () => { await updateFolderInstructions("CS 101", "Prefer the syllabus."); diff --git a/apps/desktop/src/session/folder-catalog.ts b/apps/desktop/src/session/folder-catalog.ts index 8ee5c3991bf..4f9f98db8a4 100644 --- a/apps/desktop/src/session/folder-catalog.ts +++ b/apps/desktop/src/session/folder-catalog.ts @@ -4,7 +4,9 @@ import { ancestorFolderPaths, normalizeFolderPath } from "./folders"; import { executeTransaction, liveQueryClient, useLiveQuery } from "~/db"; import { enqueueDatabaseWrite } from "~/db/write-queue"; +import { normalizeFolderIcon } from "~/session/folder-icon"; import { id } from "~/shared/utils"; +import { type TemplateIcon } from "~/templates/template-icon"; export async function ensureFolderCatalog(folderPath: string): Promise { const path = requireNamedFolderPath(folderPath); @@ -190,6 +192,30 @@ export async function updateFolderInstructions( ); } +export async function updateFolderIcon( + folderPath: string, + icon: TemplateIcon, +): Promise { + const path = requireNamedFolderPath(folderPath); + const iconJson = JSON.stringify(normalizeFolderIcon(icon)); + await enqueueDatabaseWrite("folders", () => + executeTransaction([ + ...ensureFolderStatements(path), + { + sql: ` + UPDATE folders + SET + icon_json = ?, + updated_at = strftime('%Y-%m-%dT%H:%M:%fZ', 'now') + WHERE path = ? + AND deleted_at IS NULL + `, + params: [iconJson, path], + }, + ]), + ); +} + export async function loadFolderInstructions( folderPath: string, ): Promise { diff --git a/apps/desktop/src/session/folder-icon.test.ts b/apps/desktop/src/session/folder-icon.test.ts new file mode 100644 index 00000000000..348ed42afd9 --- /dev/null +++ b/apps/desktop/src/session/folder-icon.test.ts @@ -0,0 +1,29 @@ +import { describe, expect, it } from "vitest"; + +import { DEFAULT_FOLDER_ICON, normalizeFolderIcon } from "./folder-icon"; + +describe("normalizeFolderIcon", () => { + it("uses the folder default when the value is missing", () => { + expect(normalizeFolderIcon(null)).toEqual(DEFAULT_FOLDER_ICON); + expect(normalizeFolderIcon("")).toEqual(DEFAULT_FOLDER_ICON); + }); + + it("keeps a stored folder icon", () => { + expect( + normalizeFolderIcon('{"type":"icon","value":"folder","color":"#9ca3af"}'), + ).toEqual(DEFAULT_FOLDER_ICON); + }); + + it("keeps a custom icon and unwraps nested JSON", () => { + const icon = { type: "icon" as const, value: "target", color: "#5b67d8" }; + expect(normalizeFolderIcon(icon)).toEqual(icon); + expect(normalizeFolderIcon(JSON.stringify(JSON.stringify(icon)))).toEqual( + icon, + ); + }); + + it("falls back to the folder default for invalid values", () => { + expect(normalizeFolderIcon("{")).toEqual(DEFAULT_FOLDER_ICON); + expect(normalizeFolderIcon({ type: "icon" })).toEqual(DEFAULT_FOLDER_ICON); + }); +}); diff --git a/apps/desktop/src/session/folder-icon.ts b/apps/desktop/src/session/folder-icon.ts new file mode 100644 index 00000000000..4adc94a6ad6 --- /dev/null +++ b/apps/desktop/src/session/folder-icon.ts @@ -0,0 +1,65 @@ +import { + DEFAULT_TEMPLATE_ICON, + normalizeTemplateIcon, + type TemplateIcon, +} from "~/templates/template-icon"; + +export const DEFAULT_FOLDER_ICON = { + type: "icon", + value: "folder", + color: DEFAULT_TEMPLATE_ICON.color, +} as const satisfies TemplateIcon; + +export function normalizeFolderIcon(value: unknown): TemplateIcon { + const candidate = unwrapJsonValue(value); + if (candidate == null || candidate === "") { + return DEFAULT_FOLDER_ICON; + } + + const normalized = normalizeTemplateIcon(candidate); + if (isExplicitTemplateIcon(candidate)) { + return normalized; + } + return DEFAULT_FOLDER_ICON; +} + +export function resolvedFolderIcon( + path: string, + persisted: Record, + overrides: Record = {}, +): TemplateIcon { + return normalizeFolderIcon( + overrides[path] ?? persisted[path] ?? DEFAULT_FOLDER_ICON, + ); +} + +function unwrapJsonValue(value: unknown): unknown { + let current = value; + for (let i = 0; i < 3; i += 1) { + if (typeof current !== "string") { + return current; + } + const trimmed = current.trim(); + if (!trimmed) { + return ""; + } + try { + current = JSON.parse(trimmed); + } catch { + return DEFAULT_FOLDER_ICON; + } + } + return current; +} + +function isExplicitTemplateIcon(value: unknown): boolean { + if (!value || typeof value !== "object") { + return false; + } + const icon = value as { type?: unknown; value?: unknown }; + return ( + (icon.type === "emoji" || icon.type === "icon") && + typeof icon.value === "string" && + icon.value.trim().length > 0 + ); +} diff --git a/apps/desktop/src/session/folder-instructions.tsx b/apps/desktop/src/session/folder-instructions.tsx new file mode 100644 index 00000000000..df2e52f7866 --- /dev/null +++ b/apps/desktop/src/session/folder-instructions.tsx @@ -0,0 +1,48 @@ +import { useLingui } from "@lingui/react/macro"; +import { useEffect, useState } from "react"; + +import { cn } from "@anlg/utils"; + +import { + updateFolderInstructions, + useFolderInstructions, +} from "~/session/folder-catalog"; + +export function FolderInstructionsField({ + folderPath, + rows = 2, +}: { + folderPath: string; + rows?: number; +}) { + const { t } = useLingui(); + const saved = useFolderInstructions(folderPath); + const [value, setValue] = useState(saved); + + useEffect(() => { + setValue(saved); + }, [folderPath, saved]); + + return ( +